-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
84 lines (80 loc) · 2.37 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
73
74
75
76
77
78
79
80
81
82
83
84
[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.10, <3.12"
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 >= 1.20.0",
"pyarrow",
"requests",
"PyYAML==6.0.2",
"simpy",
"msgpack==1.1.0",
]
[project.urls]
homepage = "https://www.nrel.gov/transportation/altrios.html"
source = "https://github.com/NREL/altrios"
[project.optional-dependencies]
dev = [
"pytest~=8.3",
"maturin~=1.8",
"ipykernel~=6.29",
"python-lsp-server~=1.10",
"ruff~=0.9",
"pylsp-mypy~=0.7.0",
"memory_profiler~=0.61.0",
"pymoo~=0.6",
"plotly~=6.0",
]
[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/*" },
]