-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
58 lines (49 loc) · 1.38 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
[project]
name = "tile2net"
version = "0.4.0"
description = "Pedestrian networks from aerial imagery tiles"
readme = "README.md"
requires-python = ">=3.10,<3.12"
license = { file = "LICENSE" }
keywords = [
"urban-analytics",
"pedestrian-network",
"create-annotation",
"sidewalk-detection"
]
authors = [
{ name = "Maryam Hosseini", email = "[email protected]" },
]
maintainers = [
{ name = "Daniel Hodczak", email = "[email protected]" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
dynamic = ["dependencies"]
[project.urls]
repository = "https://github.com/VIDA-NYU/tile2net"
documentation = "https://tile2net.readthedocs.io/en/latest/?badge=latest"
issue-tracker = "https://github.com/VIDA-NYU/tile2net/issues"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 42",
"wheel",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
dependencies = { file = ["requirements-dev.txt"] }
[tool.setuptools.packages.find]
where = ["src"]
include = ["tile2net*"]
[tool.setuptools.package-data]
"tile2net.artifacts.sample.brk_sw_lines" = ["*"]
"tile2net" = ["logging.conf"]
# include .npy for testing; this is 9 MB!
"tile2net.raster.resources.segmentation" = ["**/*.npy"]
[tool.pytest.ini_options]
testpaths = [ "src/tile2net/tests" ]
python_files = ["test_local.py"]