forked from appalca/appabuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
57 lines (53 loc) · 1.34 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["app", "appabuild"]
[project]
name = "appabuild"
version = "0.3.2"
authors = [{ name = "Maxime Peralta", email = "maxime.peralta@cea.fr"}]
maintainers= [{name = "Maxime Peralta", email = "maxime.peralta@cea.fr"}]
description = "Appa Build is a package to build impact models"
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,<3.12"
dependencies = [
"numpy==1.26.4",
"pandas==2.0.0",
"brightway2==2.4.7",
"bw2io==0.8.12",
"lca_algebraic==1.0.0",
"fastapi",
"uvicorn[standard]",
"flake8",
"black",
"isort",
"typer",
"omegaconf",
"pydantic",
"scipy",
"matplotlib==3.10.0",
"seaborn==0.12.2",
"plotly",
"aenum",
"kaleido",
"tqdm",
"ruamel.yaml",
"apparun==0.3.2",
"pre-commit",
"typer==0.15.1",
]
[project.scripts]
appabuild = "app.cli.main:cli_app"
[project.urls]
"Source" = "https://github.com/appalca/appabuild/"