-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
64 lines (59 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
[build-system]
requires = ["chronver", "setuptools>=66"]
build-backend = "setuptools.build_meta"
[project]
authors = [
{ name = "RadiaSoft LLC", email = "[email protected]" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Utilities",
]
dependencies = [
"argh>=0.26",
"black~=24.2",
"future>=0.14",
"github3.py>=1.1",
"importlib-metadata>=0.12",
"jinja2>=2.7",
"msgpack>=1.0",
"openpyxl>=3.0.9",
"packaging>=21.0",
"pandas>=1.3.2",
"path.py>=7.7.1",
"pluggy>=0.12.0",
"psutil>=5.0",
"py-cpuinfo>=0.2",
"py>=1.4",
"pytest>=2.7",
"python-dateutil>=2.4.2",
"pytz>=2015.4",
"requests>=2.18",
"ruamel.yaml>=0.16.0",
"setuptools>=66",
"six>=1.9",
"Sphinx>=1.3.5",
"toml>=0.10",
"tornado",
"urllib3",
"XlsxWriter>=3.0.3",
]
description = "Python application support library"
dynamic = ["version"]
name = "pykern"
readme = "README.md"
[project.scripts]
pykern = "pykern.pykern_console:main"
[project.urls]
Homepage = "http://pykern.org"
[tool.setuptools.packages.find]
include = ["pykern*"]
[tool.setuptools.package-data]
pykern = ["package_data/**"]