-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
41 lines (32 loc) · 1.03 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
[project]
name = "enova"
description = "enova"
requires-python = ">=3.8"
dynamic = ["dependencies", "version"]
authors = [
{ name = "kyokagong", email = "[email protected]" },
{ name = "wenxinxie", email = "[email protected]" },
{ name = "jockyhawk", email = "[email protected]" },
{ name = "kimzhao", email = "[email protected]" },
]
readme = "README.md"
[project.scripts]
enova = "enova.entry.cli:main"
[project.optional-dependencies]
lint = ["black==23.12.0"]
test = ["pytest", "pytest-cov", "responses", "respx"]
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2,<=7.1.0", "toml"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["enova.*"]
namespaces = true
[tool.setuptools.package-data]
"*" = ["*.csv", "docker-compose-*"]
"enova.web_statics" = ["*", "*/*"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = {file = ["VERSION"]}
[tool.coverage.run]
omit = ["*/tests/test_*.py"]