-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.53 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (73 loc) · 2.53 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
# ======================================================================
# RNV Color Palette Manager — pyproject.toml
# PEP 621 project metadata (modern Python packaging standard)
# ======================================================================
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rnv-color-palette-manager"
version = "3.3.13"
description = "A professional color palette management application with multi-theme support, color harmonies, accessibility tools, and export to 16+ formats."
readme = "README.md"
requires-python = ">=3.13"
license = { file = "LICENSE" }
authors = [
{ name = "RNV" },
]
keywords = [
"color",
"palette",
"design",
"pyqt6",
"desktop",
"color-picker",
"color-harmony",
"accessibility",
"wcag",
"color-blindness",
"ase",
"gpl",
"procreate",
"affinity",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: X11 Applications :: Qt",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"PyQt6>=6.5.0,<7.0",
"Pillow>=10.0.0,<12.0",
]
[project.urls]
Homepage = "https://github.com/RNVizion/rnv-color-palette-manager"
Repository = "https://github.com/RNVizion/rnv-color-palette-manager"
Issues = "https://github.com/RNVizion/rnv-color-palette-manager/issues"
[project.scripts]
rnv-color-palette-manager = "RNV_Color_Palette_Manager:main"
# ======================================================================
# Setuptools — package discovery
# ======================================================================
# The project has a flat layout: the main script lives at the repo root
# alongside the core/, ui/, and utils/ subpackages. We declare the
# subpackages explicitly and include the top-level script as a module.
[tool.setuptools]
py-modules = ["RNV_Color_Palette_Manager"]
[tool.setuptools.packages.find]
include = ["core*", "ui*", "utils*"]
exclude = ["tests*", "resources*"]
[tool.setuptools.package-data]
"*" = ["resources/**/*", "py.typed"]