-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
91 lines (84 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ecoinvent_interface"
authors = [
{ name=" Chris Mutel", email="[email protected]" }
]
maintainers = [
{ name=" Chris Mutel", email="[email protected]" }
]
description = "Unofficial client for interfacing with ecoinvent database"
readme = "README.md"
dynamic = ["version"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.8"
dependencies = [
"lxml",
"platformdirs",
"py7zr",
"pydantic-settings",
"pyecospold",
"requests",
"tqdm"
]
[project.urls]
source = "https://github.com/brightway-lca/ecoinvent_interface"
homepage = "https://github.com/brightway-lca/ecoinvent_interface"
tracker = "https://github.com/brightway-lca/ecoinvent_interface/issues"
[project.optional-dependencies]
testing = [
"ecoinvent_interface",
"pypdf",
"pytest",
"pytest-cov",
"setuptools",
]
dev = [
"build",
"pre-commit",
"pylint",
"pypdf",
"pytest",
"pytest-cov",
"setuptools",
]
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = true
packages = ["ecoinvent_interface"]
[tool.setuptools.dynamic]
version = {attr = "ecoinvent_interface.__version__"}
[tool.pytest.ini_options]
addopts = "--cov ecoinvent_interface --cov-report term-missing --verbose -m \"not slow\""
markers = [
# Mark tests as slow (deselect with '-m "slow or not slow"')
"slow"
]
norecursedirs = [
"dist",
"build",
".tox"
]
testpaths = ["tests/*.py"]
[tool.flake8]
# Some sane defaults for the code style checker flake8
max_line_length = 100
extend_ignore = ["E203", "W503"]
# ^ Black-compatible
# E203 and W503 have edge cases handled by black
exclude = [
".tox",
"build",
"dist",
".eggs",
"docs/conf.py",
]