-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.04 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
43
44
45
[tool.poetry]
name = "the_conf"
version = "1.0.3"
description = "Config build from multiple sources"
authors = ["François Schmidts <[email protected]>"]
license = "GPLv3"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
keywords = ["conf", "configuration", "json", "yaml"]
homepage = "https://github.com/jaesivsm/the_conf"
repository = "https://github.com/jaesivsm/the_conf"
documentation = "https://github.com/jaesivsm/the_conf#readme"
readme = "README.md"
[tool.poetry.scripts]
crypt = "the_conf.__main__:main"
[tool.poetry.dependencies]
python = ">=3.9"
pyyaml = "*"
pycryptodome = "^3.21.0"
[tool.poetry.group.dev.dependencies]
pycodestyle = "*"
pylint = "*"
mypy = "*"
flake8 = "*"
types-pyyaml = "^6.0.12.12"
black = "^23.11.0"
isort = "^5.12.0"
[tool.poetry.group.test.dependencies]
pytest = "*"
coverage = "*"
coveralls = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
target-version = ["py39"]