forked from VIDA-NYU/tile2net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.18 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
[project]
name = "tile2net"
version = "0.3.0"
description = "Pedestrian networks from aerial imagery tiles"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = [
"urban-analytics",
"pedestrian-network",
"create-annotation",
"sidewalk-detection"
]
authors = [
{ name = "Maryam Hosseini", email = "maryamh@mit.edu" },
]
maintainers = [
{ name = "Daniel Hodczak", email = "dhodcz2@uic.edu" }
]
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"]