forked from hsluv/hsluv-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 821 Bytes
/
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
#!/usr/bin/python
# Use setuptools if we can
try:
from setuptools.core import setup
except ImportError:
from distutils.core import setup
from husl import __version__
setup(
name='husl',
version=__version__,
description='Human-friendly HSL',
license="MIT",
author_email="[email protected]",
url="http://www.husl-colors.org",
keywords="color hsl cie cieluv colorwheel",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"
],
py_modules=["husl"],
test_suite="tests.husl_test"
)