forked from ssaw/python-colormath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (31 loc) · 1.13 KB
/
setup.py
File metadata and controls
executable file
·36 lines (31 loc) · 1.13 KB
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
#!/usr/bin/env python
from distutils.core import setup
import colormath
from setuptools import setup
LONG_DESCRIPTION = open('README.rst').read()
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules'
]
KEYWORDS = 'color math conversions'
setup(name='colormath',
version=colormath.VERSION,
description='Color math and conversion library.',
long_description = LONG_DESCRIPTION,
author='Gregory Taylor',
author_email='gtaylor@l11solutions.com',
url='http://code.google.com/p/python-colormath/',
download_url='http://pypi.python.org/pypi/colormath/',
packages=['colormath'],
platforms = ['Platform Independent'],
license = 'BSD',
classifiers = CLASSIFIERS,
keywords = KEYWORDS,
requires = ['numpy']
)