-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
51 lines (48 loc) · 1.31 KB
/
setup.py
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
from setuptools import setup
setup(
name="extcolors",
version="1.0.0",
description="Extract colors from an image. "
"Colors are grouped based on visual similarities using the CIE76 formula.",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
url="https://github.com/CairX/extract-colors-py",
author="CairX",
author_email="lazycairx@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Environment :: Console",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.6",
keywords="extract colors image",
packages=["extcolors"],
install_requires=[
"Pillow >=8.0.0",
"convcolors >=1.0.0",
],
extras_require={
"dev": [
"pytest ==5.4.3",
"tox ==3.16.0",
"yapf ==0.30.0",
]
},
entry_points={
"console_scripts": [
"extcolors=extcolors.command:main"
],
},
)