-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 1.48 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pixel-canon"
version = "0.1.3" # Поднимаем версию для нового релиза
authors = [
{ name="GolonChenroppi", email="golonchenroppi@gmail.com" },
]
description = "The canon for pixel data topology. A cross-language specification to define the logical layout of images."
# Ссылаемся на локальный для пакета README_pypi.md
readme = "README_pypi.md"
requires-python = ">=3.8"
# Лицензию тоже лучше скопировать, чтобы избежать проблем с путями
license = { file = "LICENSE" }
keywords = ["image", "pixel", "layout", "numpy", "pytorch", "opencv", "computer-vision", "image-processing", "hwc", "chw"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = []
[project.optional-dependencies]
numpy = ["numpy"]
[project.urls]
"Homepage" = "https://github.com/GolonChenroppi/pixel-canon"
"Documentation" = "https://github.com/GolonChenroppi/pixel-canon/blob/main/spec/v1.0.md"
"Bug Tracker" = "https://github.com/GolonChenroppi/pixel-canon/issues"