-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
34 lines (28 loc) · 1.03 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
[tool.poetry]
name = "poetry-add-requirements.txt"
version = "1.4.0"
description = "Add dependencies specified in requirements.txt file(s) to your Poetry project"
authors = ["Xinyuan Chen <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tddschn/poetry-add-requirements.txt"
repository = "https://github.com/tddschn/poetry-add-requirements.txt"
classifiers = ["Topic :: Utilities"]
keywords = ["poetry", "requirements.txt"]
[tool.poetry.scripts]
"poetry-add-requirements.txt" = "poetry_add_requirements_txt.cli:main"
"poeareq" = "poetry_add_requirements_txt.cli:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tddschn/poetry-add-requirements.txt/issues"
[tool.poetry.dependencies]
python = ">=3.10, <4.0"
charset-normalizer = "^2.0.12"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^22.3.0"
[tool.poetry.group.dev.dependencies]
icecream = "^2.1.3"
ipython = "^8.20.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"