-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (53 loc) · 1.44 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=41.2", "setuptools-scm" ]
[project]
name = "cmcrameri"
description = "Perceptually uniform colormaps by Fabio Crameri"
readme = "README.md"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Callum Rollo", email = "c.rollo@outlook.com" },
]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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",
]
dynamic = [
"version",
]
dependencies = [
"matplotlib",
"numpy",
"packaging",
]
urls.documentation = "https://github.com/callumrollo/cmcrameri"
urls.homepage = "https://pypi.org/project/cmcrameri/"
urls.repository = "https://github.com/callumrollo/cmcrameri"
[tool.setuptools]
packages = [ "cmcrameri" ]
include-package-data = true
[tool.setuptools_scm]
write_to = "cmcrameri/_version.py"
write_to_template = "__version__ = '{version}'"
[tool.ruff]
target-version = "py37"
line-length = 120
per-file-ignores."docs/conf.py" = [ "E402" ]
select = [
"F", # flakes
"I", # import sorting
"U", # upgrade
]
[tool.pyproject-fmt]
column_width = 120
indent = 2
max_supported_python = "3.14"