-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (45 loc) · 1.24 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
[project]
name = "geopull"
description = """
Simple tool for bulk downloading OSM and GADM geographic files and doing
a minimal amount of preprocessing.
"""
readme = "README.md"
requires-python = ">=3.11"
version = "0.6.1"
authors = [
{name = "Manuel Martinez", email = "[email protected]"}
]
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
optional-dependencies = {dev = {file = "dev-requirements.txt"}}
[tools.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
geopull = ["*.json"]
[project.urls]
repository = "https://github.com/mansueto-institute/geopull"
[build-system]
requires = ['setuptools', "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project.scripts]
geopull = "geopull.__main__:main"
[tool.black]
line-length = 79
[tool.mypy]
ignore_missing_imports = true
[tool.coverage.run]
omit = ["src/geopull/tqdm_download.py"]
[tool.coverage.report]
omit = ["src/geopull/tqdm_download.py"]
[tool.pytest.ini_options]
addopts = [
"--cov-config=.coveragerc",
"--cov=geopull",
"--cov-branch",
"--cov-report=term-missing",
"--cov-report=xml:coverage.xml",
"--junitxml=coverage-junit.xml",
"--durations=5"
]