-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
60 lines (56 loc) · 1.55 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "watts"
version = "0.5.2-dev"
authors = [
{ name = "UChicago Argonne, LLC", email = "[email protected]" },
]
license = { file = "LICENSE" }
description = "Workflow and Template Toolkit for Simulation"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.7"
dependencies = [
"Jinja2",
"dill",
"numpy",
"pandas",
"platformdirs",
"prettytable",
"astropy",
"uncertainties",
"click",
]
[project.optional-dependencies]
test = ["pytest"]
docs = [
"sphinx",
"pydata_sphinx_theme",
"sphinx_design",
"sphinx-autodoc-typehints",
]
[project.urls]
"Bug Tracker" = "https://github.com/watts-dev/watts/issues"
Documentation = "https://watts.readthedocs.io"
"Source Code" = "https://github.com/watts-dev/watts"
[project.scripts]
watts = "watts:console.main"