-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 908 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 908 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "olca-ipc"
version = "2.4.0"
description = "A package for calling openLCA functions from Python."
readme = "README.md"
requires-python = ">=3.11"
keywords=["openLCA", "life cycle assessment", "LCA"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Utilities",
]
dependencies = [
"olca-schema>=2.4.0",
"requests>=2.32.0"
]
[project.urls]
"Homepage" = "https://github.com/GreenDelta/olca-ipc.py"
"Bug Tracker" = "https://github.com/GreenDelta/olca-ipc.py/issues"
[tool.setuptools.packages.find]
include = ["olca_ipc"]
exclude = ["tests"]