-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
79 lines (72 loc) · 1.81 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "constructive_geometries"
authors = [
{ name=" Chris Mutel", email="[email protected]" }
]
maintainers = [
{ name=" Chris Mutel", email="[email protected]" }
]
description = "Simple tools to define world locations from a set of topological faces and set algebra"
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.10"
dependencies = [
"country_converter",
"wrapt"
]
readme = "README.md"
[project.urls]
source = "https://github.com/ecoinvent/constructive_geometries"
homepage = "https://github.com/ecoinvent/constructive_geometries"
tracker = "https://github.com/ecoinvent/constructive_geometries/issues"
[project.optional-dependencies]
gis = [
"constructive_geometries",
"fiona",
"shapely"
]
dev = [
"build",
"pre-commit",
"pylint",
"pytest",
"pytest-cov",
"setuptools",
]
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = true
packages = ["constructive_geometries"]
[tool.setuptools.dynamic]
version = {attr = "constructive_geometries.__version__"}
[tool.pytest.ini_options]
addopts = "--cov constructive_geometries --cov-report term-missing --verbose"
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",
]