-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (59 loc) · 2.14 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
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = [
# Ensure pyproject.toml and dynamic requirements file support.
"setuptools >= 62.6.0",
]
build-backend = "setuptools.build_meta"
# NOTE: See # https://packaging.python.org/en/latest/specifications/declaring-project-metadata/ for more options.
[project]
name = "roofsense"
version = "0.0.1"
description = "RoofSense: Tools and utilities for building and using semantic segmentation models for roofing material mapping."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "Dimitris Mantas", email = "[email protected]" },
]
maintainers = [{ name = "Dimitris Mantas", email = "[email protected]" },
]
# TODO: Specify the keywords and classifiers.
keywords = []
# NOTE: See https://pypi.org/classifiers/ for more options.
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: GIS",
]
# TODO: Specify the dependencies.
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements/common.txt"] }
optional-dependencies = { dev = { file = ["requirements/dev.txt"] } }
# NOTE: See https://docs.astral.sh/ruff/settings/ for more options.
[tool.ruff]
extend-include = ["*.ipynb"]
fix = true
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.ruff.lint]
extend-select = ["ANN", "D", "I", "RUF", "UP"]
ignore = ["ANN101", "ANN102", "ANN401"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
split-on-trailing-comma = false
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.setuptools.package-data]
roofsense = ["py.typed"]
[tool.setuptools.packages.find]
include = ["roofsense*"]