-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (44 loc) · 1.41 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "TUFSeg"
description = "Thermal Urban Feature Segmentation"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "Elena Vollmer", email = "[email protected]" },
{ name = "Leon Klug" },
{ name = "James Kahn" },
]
classifiers = [
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD-3-Clause License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Image Recognition',
]
dynamic = ["version", "dependencies"]
[project.urls]
"Homepage" = "https://github.com/emvollmer/TUFSeg"
"Bug Tracker" = "https://github.com/emvollmer/TUFSeg/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
env = []
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = { file = "VERSION" }
[tool.setuptools]
include-package-data = true
packages = ["tufseg"]
py-modules = []
[tool.setuptools.package-data]
"tufseg" = ["resources/*"]