-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
51 lines (44 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
[build-system]
requires = [
"setuptools>=62.3.0",
"setuptools-scm"
]
build-backend = "setuptools.build_meta"
[project]
name = "running-ng"
description = "Running: Next Generation"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "Apache"}
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: System :: Benchmark',
'Programming Language :: Python :: 3',
]
authors = [{name = "Zixian Cai", email = "[email protected]"}]
dependencies = [
"pyyaml~=6.0.1"
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/anupli/running-ng"
"Bug Tracker" = "https://github.com/anupli/running-ng/issues"
[project.optional-dependencies]
zulip = [
"zulip~=0.9.0"
]
tests = [
"pytest>=7.4.4,<8.4.0",
"types-PyYAML~=6.0.12",
"mypy>=1.8,<1.12"
]
[project.scripts]
running = "running.__main__:main"
[tool.setuptools.dynamic]
version = {attr = "running.__version__.__VERSION__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
running = ["config/**/*.yml"]