-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.17 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
[tool.poetry]
name = "ochre"
version = "0.5.0"
description = "A tiny Python package for working with colors in a pragmatic way"
authors = ["Felipe S. S. Schneider <schneider.felipe@posgrad.ufsc.br>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/getcuia/ochre"
repository = "https://github.com/getcuia/ochre"
keywords = [
"ansi",
"color-palettes",
"colors",
"cuia",
"hcl",
"hex",
"ochre",
"rgb",
"web",
"zero-dependency",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Graphics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
prospector = "^1.7.7"
[tool.poetry.dev-dependencies]
pytest = "^7.1"
mypy = "^0.960"
bandit = "^1.7.4"
flake8 = "^4.0.1"
black = {version = "^22.3", allow-prereleases = true}
pylint = "^2.14.1"
hypothesis = "^6.49.1"
pydocstyle = "^6.1.1"
isort = "^5.10.1"
ipython = "^8.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"