-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (36 loc) · 1.22 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
[project]
name = "omnistat"
dynamic = ["version", "dependencies", "optional-dependencies"]
readme = "README.md"
requires-python = ">=3.8,<3.11"
[project.scripts]
omnistat-monitor = "omnistat.node_monitoring:main"
omnistat-usermode = "omnistat.omni_util:main"
omnistat-annotate = "omnistat.annotate:main"
omnistat-query = "omnistat.query:main"
omnistat-rms-env = "omnistat.rms_env:main"
omnistat-standalone = "omnistat.standalone:main"
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools-git-versioning>=2.0,<3"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["omnistat"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies = { query = { file = ["requirements-query.txt"] } }
[tool.setuptools.package-data]
"omnistat" = ["config/omnistat.default"]
[tool.setuptools-git-versioning]
enabled = true
version_file = "VERSION"
count_commits_from_version_file = true
dev_template = "{tag}+git.{sha}"
dirty_template = "{tag}+git.{sha}.uncommitted"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning::", # ignore third-party deprecation warnings
"default::DeprecationWarning:omnistat.*:",
]
[tool.black]
line-length = 120
include = '\.py$'