-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.21 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
38
39
40
41
42
[tool.isort]
profile = "black"
[tool.poetry]
name = "pythoncliapp"
version = "0.1.0"
description = "A template for Python CLI applications"
license = "Apache 2.0"
authors = ["Dixon Whitmire <[email protected]>"]
maintainers = ["Dixon Whitmire <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/dixonwhitmire/python-cli-app"
repository = "https://github.com/dixonwhitmire/python-cli-app"
documentation = "https://github.com/dixonwhitmire/python-cli-app/README.md"
keywords = ["template", "python", "argparse"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
]
packages = [{include = "pythoncliapp", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.0.2"
pydantic-settings = "^2.0.1"
pyaml = "^23.7.0"
[tool.poetry.scripts]
cli = 'pythoncliapp.cli.main:main'
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.3.0"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"