-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (29 loc) · 885 Bytes
/
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
[build-system]
requires = ["setuptools >= 69.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ulcarchetype"
dynamic = ["version"]
dependencies = [
"bw2data>=4.0.dev46",
]
requires-python = ">=3.8"
authors = [
{name = "Miguel F. Astudillo", email = "[email protected]"},
]
description = "Lovely Spam! Wonderful Spam!"
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ["lca", "uncertainty","lcia"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.dynamic]
version = {attr = "ulcarchetype.__version__"}
[project.urls]
Repository = "https://github.com/mfastudillo/ulcarchetype.git"
"Bug Tracker" = "https://github.com/mfastudillo/ulcarchetype/issues"
Changelog = "https://github.com/mfastudillo/ulcarchetype/blob/master/CHANGELOG.md"