-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (35 loc) · 1.26 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "tufsegm_api"
authors = [{ name = "Elena Vollmer", email = "[email protected]" }]
description = "Deepaas API for thermal urban feature semantic segmentation model repo"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "BSD-3-Clause" }
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: AI/ML/DL Researchers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
dynamic = ["version", "dependencies"]
[project.urls]
"Homepage" = "https://github.com/emvollmer/tufsegm_api"
"Bug Tracker" = "https://github.com/emvollmer/tufsegm_api/issues"
[tool.pytest.ini_options]
pythonpath = ["."]
env = ["DATA_PATH=tests/data", "MODELS_PATH=tests/models"]
# Allow test files to share names
# https://docs.pytest.org/en/7.1.x/explanation/goodpractices.html
addopts = "--import-mode=importlib"
[tool.setuptools]
packages = ["tufsegm_api", "tufsegm_api.api"]
[tool.setuptools.package-dir]
"tufsegm_api.api" = "api"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = { file = "VERSION" }
[project.entry-points."deepaas.v2.model"]
tufsegm_api = "tufsegm_api.api"