-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.19 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "olca-ipc"
version = "2.6.2"
description = "A package for calling openLCA functions from Python."
readme = "README.md"
requires-python = ">=3.12"
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",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Utilities",
]
dependencies = [
"olca-schema>=2.6.2",
"requests>=2.33.1"
]
[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"]
[project.optional-dependencies]
test = [
"pytest>=9.0",
]
packaging = [
"build>=1.4",
"twine>=6.2",
]
[tool.ruff]
line-length = 80
[tool.ruff.lint.per-file-ignores]
# https://docs.astral.sh/ruff/rules/ambiguous-variable-name/#ambiguous-variable-name-e741
"tests/**/*.py" = ["E741"]