-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (44 loc) · 1.19 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
from setuptools import setup
import os
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
if not on_rtd:
install_requires = [
"colormath",
"numpy",
"pyicu",
"fuzzywuzzy",
"python-Levenshtein",
# Remove this if colormath bug #51 is resolved
"networkx",
"sphinx>=1.3b2",
]
else:
install_requires = [
"mock",
]
setup(
name="tint",
version="0.4",
description="Friendly Color Normalization",
url="http://github.com/solute/python-tint",
author="Christian Schramm",
author_email="[email protected]",
license="GPL2",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Topic :: Utilities",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
keywords=["color", "normalization", "fuzzy", "perceptual"],
packages=["tint"],
zip_safe=True,
package_data={"tint": ["data/*"]},
install_requires=install_requires,
tests_require=[
"pytest",
],
)