-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
58 lines (53 loc) · 1.72 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "img2cmap"
version = "0.2.3"
authors = [
{ name="Kevin Arvai", email="[email protected]" },
{ name="Marshall Krassenstein", email="[email protected]"},
]
description = "Create colormaps from images"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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 :: Implementation :: CPython",
"Topic :: Utilities",
]
keywords = ["colormap", "matplotlib", "kmeans", "data visualization"]
dependencies = [
"matplotlib>=3.4.2",
"scikit-learn>=0.24.2",
"numpy>=1.20.3",
"pillow>=8.0.1",
"kneed >=0.8.1",
]
[project.optional-dependencies]
dev = ["black", "requests", "tox"]
streamlit= ["streamlit>=1.29.0", "st-annotated-text"]
all = ["black", "requests", "tox", "streamlit", "st-annotated-text"]
[project.license]
file = "LICENSE"
[project.urls]
"Homepage" = "https://github.com/arvkevi/kneed"
"Bug Tracker" = "https://github.com/arvkevi/kneed/issues"
[tool.black]
line-length = 140
target-version = ['py37', 'py38', 'py39', 'py310']
skip-string-normalization = false