-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1.23 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "colorschemes"
# Read version from colorschemes/VERSION.txt
dynamic = ["version"]
description = "colorschemes: A package for aesthetically pleasing and colorblindness-friendly color schemes"
authors = [{ name = "Ethan Dintzner" }]
readme = { text = "colorschemes contains a collection of several hundred multicolor palettes from Color Inspirations by Darius A. Monsef IV." }
requires-python = ">=3.9"
license = { text = "MIT" }
dependencies = [
"numpy>=2.0.0",
"matplotlib>=3.0.0",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.setuptools.dynamic]
version = { file = "colorschemes/VERSION.txt" }
# Explicitly list the package (like packages=['colorschemes'])
[tool.setuptools.packages]
find = { include = ["colorschemes"] }
# Include *.txt files inside the colorschemes package (like package_data)
[tool.setuptools.package-data]
colorschemes = ["*.txt"]