-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
80 lines (73 loc) · 1.13 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
77
78
79
80
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = [
"/candore",
"/apix",
]
[tool.hatch.build.targets.wheel]
packages = [
"/candore",
"/apix",
]
[project]
name = "candore"
dynamic = ["version"]
readme = "README.md"
license-files = { paths = ["LICENSE"] }
authors = [
{ name = "Jitendra Yejare" },
]
maintainers = [
{ name = "Jitendra Yejare" },
]
keywords = [
"distutils",
"hatch",
"api",
"data",
"upgrades",
"validation"
]
dependencies = [
"aiohttp",
"asyncio",
"click",
"dynaconf",
"logzero",
"lxml",
"flask",
"requests",
"PyYAML",
]
[project.optional-dependencies]
test = [
"mock",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-variables",
"coveralls",
]
[project.scripts]
candore = "candore.cli:candore"
[tool.black]
line-length = 100
skip-string-normalization = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.venv
| _build
| buck-out
| build
| dist
)/
'''