-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (42 loc) · 1.3 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
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools"]
[project]
name = "brightway-tools"
version = "1.0.0"
description = "Enbios 2"
authors = [
{ name = "Ramin Soleymani" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Typing :: Typed"
]
readme = "README.md"
license = { text = "BSD-3-Clause" }
requires-python = ">=3.9"
dependencies = {file="requirements.txt"}
[project.urls]
"Homepage" = "https://github.com/LIVENlab/enbios"
"Bug Tracker" = "https://github.com/LIVENlab/enbios/issues"
[project.optional-dependencies]
test = [
"pytest==7.3.2", "Deprecated>=1.2.14"
]
[tool.setuptools]
package-dir = { "enbios" = "enbios" }
[tool.ruff]
line-length = 90