-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
36 lines (31 loc) · 879 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
34
35
36
[tool.poetry]
name = "poetryize"
version = "1.0.1"
description = "A script that utilized typer, rich to create a tool that converts requirements.txt to be compatible with poetry"
authors = ["thoth2357 <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "poetryize"}]
repository = "https://github.com/thoth2357/poetryize"
[tool.poetry.dependencies]
python = "^3.9"
typer = {extras = ["all"], version = "^0.9.0"}
rich = "^13.6.0"
asgiref = "3.7.2"
async-timeout = "4.0.2"
asyncio = "3.4.3"
aiohttp = "3.8.4"
aiosignal = "1.3.1"
annotated-types = "0.5.0"
[tool.poetry.scripts]
poetryize = "poetryize.poetryize:app"
[tool.poetry.group.dev.dependencies]
black = "^23.10.1"
isort = "^5.12.0"
flake8 = "^6.1.0"
pytest = "^7.4.3"
coverage = "^7.3.4"
tox = "^4.11.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"