-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 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
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=61.2", "cmake>=3.5"]
build-backend = "setuptools.build_meta"
[project]
name = "cleedpy"
dynamic = ["version"]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: C",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"click",
"matplotlib",
"numpy",
"pyyaml",
"scipy",
"pydantic",
"typer"
]
[project.optional-dependencies]
dev = [
"bumpver==2023.1129",
"pre-commit==3.6.0",
"pytest==7.4.4",
"pytest-cov==4.1.0",
]
[project.scripts]
cleedpy-rfactor = "cleedpy.cli.rfactor:cli"
cleedpy-search = "cleedpy.cli.search:cli"
cleedpy-leed = "cleedpy.cli.leed:cli"
[tool.setuptools]
include-package-data = true
zip-safe = false
license-files = ["LICENSE"]
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.dynamic]
version = {attr = "cleedpy.version.__version__"}