-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
72 lines (68 loc) · 2.17 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
69
70
71
72
[build-system]
requires = ["maturin>=1.0"]
build-backend = "maturin"
[project]
name = "altrios"
version = "0.2.3"
authors = [
{ name = "ALTRIOS Team", email = "[email protected]" },
{ name = "Chad Baker, Lead Developer" },
{ name = "Nick Reinicke, Developer" },
{ name = "Matt Bruchon, Developer" },
{ name = "Saad Akhtar, Developer" },
{ name = "Steven Shi, Developer" },
{ name = "Jinghu Hu, Developer" },
{ name = "Grant Payne, Developer" },
{ name = "Jason Lustbader, PI" },
{ name = "Garrett Anderson, Developer" },
{ name = "Joel Allardyce, Developer" },
{ name = "Prativa Hartnett, Developer" },
{ name = "Steve Fritz, SwRI Lead" },
{ name = "Tyler Dick, Co-PI" },
]
description = "Tool for modeling and optimization of advanced locomotive powertrains for freight rail decarbonization."
readme = "README.md"
license = { file = "LICENSE.md" }
requires-python = ">=3.9, <3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"pandas>=2",
"numpy==1.24",
"pymoo==0.6",
"openpyxl",
"xlrd",
"seaborn",
"matplotlib",
"plotly",
"typing_extensions",
"pyyaml",
"polars==0.20.25",
"pyarrow",
"requests",
"PyYAML==6.0.2",
]
[project.urls]
homepage = "https://www.nrel.gov/transportation/altrios.html"
source = "https://github.com/NREL/altrios"
[project.optional-dependencies]
dev = ["black", "pytest", "maturin", "ipykernel"]
[tool.maturin]
profile = "release"
python-source = "python"
features = ["pyo3/extension-module"]
module-name = "altrios.altrios_pyo3"
manifest-path = "rust/altrios-py/Cargo.toml"
include = [
{ format = "sdist", path = "rust/altrios-core/Cargo.toml" },
{ format = "sdist", path = "rust/altrios-core/src/*" },
{ format = "sdist", path = "rust/altrios-py/Cargo.toml" },
{ format = "sdist", path = "rust/altrios-py/src/*" },
{ format = "sdist", path = "rust/altrios-core/proc-macros/Cargo.toml" },
{ format = "sdist", path = "rust/altrios-core/proc-macros/src/*" },
]