-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.83 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "tailwind_colors"
version = "1.3.0"
description = "Use the default color palette from TailwindCSS (https://tailwindcss.com/docs/customizing-colors) in your python code for plotting, image generation, etc."
authors = [{ name = "Moritz Makowski", email = "moritz@dostuffthatmatters.dev" }]
dependencies = []
requires-python = ">=3.8.0,<4.0.0"
readme = "README.md"
license = { text = "MIT" }
keywords = [
"utils",
"utilities",
"plotting",
"design",
"colors",
"color-palette",
"tailwind",
"css",
"matplotlib",
"plotly",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Matplotlib",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
]
[project.urls]
repository = "/~https://github.com/dostuffthatmatters/python-tailwind-colors"
documentation = "/~https://github.com/dostuffthatmatters/python-tailwind-colors"
[project.optional-dependencies]
dev = ["mypy>=1.11.2", "yapf>=0.40.2"]
[tool.pdm]
distribution = true
build.includes = ["tailwind_colors"]
build.excludes = ["scripts"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.yapf]
based_on_style = "facebook"
coalesce_brackets = true
split_before_dict_set_generator = true
each_dict_entry_on_separate_line = false
spaces_around_subscript_colon = true
column_limit = 120