-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (40 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "coolpi"
version = "0.1.18"
authors = [
{ name="Adolfo Molada Tebar", email="[email protected]"}]
dependencies = [
"numpy>=1.22",
"opencv-python>=4.6",
"pandas>=1.4",
"PySide6>=6.3",
"rawpy>=0.17",
"scipy>=1.8",
"seaborn>=0.11",
"matplotlib>=3.5"]
description = "COlour Operations Library for Processing Images"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src", "data", "assets"]
[project.urls]
"COOLPI Documentation" ="https://graffitiprojectindigo.github.io/coolpi/"
"COOLPI Source" = "https://github.com/GraffitiProjectINDIGO/coolpi/tree/main/src/coolpi"
"COOLPI Tests" = "https://github.com/GraffitiProjectINDIGO/coolpi/tree/main/tests"
"GitHub" = "https://github.com/GraffitiProjectINDIGO/coolpi"
"GitHub Notebooks" = "https://github.com/GraffitiProjectINDIGO/coolpi/tree/main/notebooks"
"INDIGO" = "https://projectindigo.eu"
"LBI - ArchPro" = "https://archpro.lbg.ac.at"
"TU Wien - GEO Department"="https://www.geo.tuwien.ac.at/"