-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (77 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (77 loc) · 1.93 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "py-caelus"
version = "5.0.0"
requires-python = ">=3.10"
authors = [
{name = "Shreyas Ananthan", email = "shreyas@umd.edu" },
{name = "Chris Sideroff", email = "cnsidero@gmail.com"},
]
maintainers = [
{name = "Shreyas Ananthan", email = "shreyas@umd.edu" },
{name = "Chris Sideroff", email = "cnsidero@gmail.com"},
]
description="Caelus python library"
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
]
dependencies = [
"six>=1.16.0",
"numpy>=1.26.0",
"pandas>=2.1.0",
"matplotlib>=3.8.0",
"PyYAML>=6.0.0",
"pytz",
"Jinja2>=3.0.0",
"ply>=3.11",
]
[project.scripts]
caelus = "caelus.scripts.caelus:main"
caelus_tutorials = "caelus.scripts.caelus_tutorials:main"
caelus_sim = "caelus.scripts.caelus_sim:main"
[project.optional-dependencies]
viz = [
"vtk>=9.2.0",
"pyvista>=0.42",
]
test = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
]
dev = [
"pylint>=3.1.0",
"black>23.12.1",
"isort>=5.13.0"
]
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["caelus*"]
namespaces = false
[tool.black]
line-length = 80
skip-string-normalization = 1
extend-exclude = """(lexer.py|parser.py|All.*py)"""
[tool.isort]
profile = "black"
known_first_party = "caelus"
known_sci = "numpy, scipy, pandas, pydantic, xarray, yaml"
sections = "FUTURE, STDLIB, SCI, THIRDPARTY, FIRSTPARTY, LOCALFOLDER"
extend_skip = ["lexer.py", "parser.py"]