-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.84 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
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "pathways"
version = "1.0.4"
description = "Scenario-level LCA of energy systems and transition pathways"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Romain Sacchi", email = "romain.sacchi@psi.ch" }
]
requires-python = ">=3.10, <3.13"
urls = { "Homepage" = "https://github.com/polca/pathways" }
classifiers = [
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy<2.0.0",
"pathlib",
"pandas",
"xarray",
"bw2calc>=2.4.0",
"bw2data",
"matrix_utils>=0.7.1",
"scipy",
"premise",
"pyyaml",
"bw_processing",
"datapackage",
"pyprind",
"platformdirs",
"fs",
"statsmodels",
"SALib",
"pyarrow",
"fastparquet",
"edges"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["pathways*"]
exclude = ["tests*", "docs*"]
# Optional: If you have non-Python data files (CSV, YAML, etc.)
# and want them included in wheels/sdists, list them here.
# Equivalent to include_package_data=True + MANIFEST.in, but explicit.
[tool.setuptools.package-data]
pathways = ["**/*.csv", "**/*.yaml", "**/*.yml", "**/*.txt", "**/*.npz", "**/*.pkl", "**/*.json", "**/*.xlsx"]