-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.52 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
[tool.isort]
profile = "black"
[tool.black]
line-length = 99
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "func_adl"
description = "Functional Analysis Description Language Base Package"
readme = "README.md"
authors = [
{ name = "G. Watts (IRIS-HEP/UW Seattle)", email = "gwatts@uw.edu" }
]
maintainers = [
{ name = "Gordon Watts (IRIS-HEP/UW Seattle)", email = "gwatts@uw.edu" }
]
license = { text = "MIT" }
homepage = "https://github.com/iris-hep/func_adl"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development",
"Topic :: Utilities"
]
dependencies = [
"make-it-sync"
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"flake8",
"coverage",
"twine",
"wheel",
"astunparse",
"black",
"isort",
"numpy",
"hatch"
]
[project.scripts]
# No scripts defined in setup.py
[tool.hatch.version]
path = "func_adl/version.txt"
[tool.hatch.build.targets.sdist]
include = ["README.md", "/func_adl"]
[tool.hatch.build.targets.wheel]
include = ["README.md", "/func_adl"]