-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
76 lines (64 loc) · 1.48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "munge"
version = "1.3.0"
description = "data manipulation library and client"
readme = "README.md"
repository = "https://github.com/20c/munge/"
authors = [ "20C <[email protected]>",]
license = "Apache-2.0"
classifiers = [
"Topic :: Software Development",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[[tool.poetry.packages]]
include = "munge"
from = "src"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.poetry.scripts]
munge = "munge.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
requests = ">=2.6"
click = ">=5.1"
[tool.poetry.dev-dependencies]
# testing
coverage = ">=5"
pytest = ">=6"
pytest-django = ">=3.8"
pytest-filedata = ">=1"
pytest-cov = "*"
tox = ">=3.20"
tox-gh-actions = ">=2.9.1"
toml = ">=0.10.2"
tomlkit = ">=0.7.2"
# linting
mypy = ">=0.950"
pre-commit = ">=2.13"
pyupgrade = ">=2.19"
ruff = ">=0.1"
# docs
markdown = "*"
markdown-include = ">=0.5,<1"
mkdocs = ">=1.2.3"
[tool.poetry.extras]
toml = [ "toml",]
tomlkit = [ "tomlkit",]
yaml = [ "PyYAML",]
[tool.poetry.dependencies.PyYAML]
version = ">=6.0.1"
optional = true
[tool.poetry.dependencies.toml]
version = ">=0.10.2"
optional = true
[tool.poetry.dependencies.tomlkit]
version = ">=0.7.2"
optional = true