-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["apparun"]
[project]
name = "apparun"
version = "0.4.4"
authors = [{ name = "Maxime Peralta", email = "maxime.peralta@cea.fr"}]
maintainers= [{name = "Maxime Peralta", email = "maxime.peralta@cea.fr"}]
description = "Appa Run is a package to execute impact models produced by Appa Build"
keywords = ["ecodesign", "life cycle assessment"]
license = { file = "LICENSE.md" }
readme = "README.md"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.11"
dependencies = [
"aenum",
"pydantic",
"pyyaml==6.0.1",
"sympy==1.14.0",
"scipy==1.16.2",
"numpy==1.26.4",
"pandas==2.3.3",
"pytest==8.4.2",
"typer==0.15.1",
"plotly==6.3.1",
"fastapi==0.120.1",
"uvicorn[standard]",
"kaleido==1.2.0",
"SALib==1.5.1",
"hatchling==1.27.0",
"click==8.1.8",
"networkx==3.4.2",
"streamlit==1.52.2"
]
[project.scripts]
apparun = "apparun.cli.main:cli_app"
[project.urls]
"Source" = "https://github.com/appalca/apparun/"