-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (37 loc) · 1.25 KB
/
pyproject.toml
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
[tool.poetry]
name = "T_reX_LCA"
version = "0.2.2"
description = "A tool for analysing waste and material footprints in Life Cycle Assessment (LCA) databases"
authors = ["Stewart Charles McDowall <s.c.mcdowall@cml.leidenuniv.nl>"]
license = "CC0 1.0 Universal (CC0 1.0) Public Domain Dedication"
readme = "README.md"
include = ["config/**/*", "misc/**/*", "src/**/*", "tests/**/*"]
exclude = ["**/__pycache__/"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
[[tool.poetry.packages]]
include = "T-reX"
from = "src"
[tool.poetry.dependencies]
python = ">=3.10 #, <3.12"
brightway2 = "^2.4.6"
premise = "^2.0.2"
cowsay = "^6.1"
[tool.poetry.group.dev.dependencies]
sphinx = "^7.2.6"
sphinx-rtd-theme = "^1.0.0"
sphinx-autoapi = "^1.8.1"
sphinxcontrib-napoleon = "^0.7"
sphinx-copybutton = "^0.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
homepage = "https://github.com/Stew-McD/T-reX"
documentation = "https://T-reX.readthedocs.io/en/latest/"