-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (30 loc) · 1.12 KB
/
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
34
35
36
37
[tool.poetry]
name = "esperanto_python"
version = "0.1.0"
description = "Write Python in Esperanto"
authors = ["JolonB <[email protected]>"]
license = "BSD-4-Clause"
readme = "README.md"
homepage = "https://github.com/JolonB/esperanto-python"
repository = "https://github.com/JolonB/esperanto-python"
# documentation = ""
keywords = ["esperanto", "translation", "python", "repl"]
[tool.poetry.dependencies]
python = "^3.7" # 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
rich = "^13.3.5" # 12.6.0 is compatible with Python3.6
# 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]
eopy = 'esperanto_python.__main__:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
issues = "https://github.com/JolonB/esperanto-python/issues"