-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (26 loc) · 945 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[tool.poetry]
name = "hebrew_python"
version = "0.1.7"
description = "write python in Hebrew"
authors = ["matan h <[email protected]>"]
license = "BSD-4-Clause"
readme = "README.md"
homepage = "https://github.com/matan-h/hebrew-python"
[tool.poetry.dependencies]
python = "^3.6" # main
ideas = "^0.0.22" # main
# friendly = {git = "https://github.com/matan-h/friendly"} #I Can't have direct dependency of my fork of friendly. I hope It will marge soon to main friendly
# optional
# friendly = { version ="^0.4.14",optional = true }
friendly-traceback = { version ="^0.4.36",optional = true}
[tool.poetry.extras]
errors = ["friendly","friendly-traceback"]
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.poetry.scripts]
hepy = 'hebrew_python.__main__:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
issues = "https://github.com/matan-h/hebrew-python/issues"