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
|
#!/usr/bin/env python
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',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
]
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@gc-taylor.com',
url='https://github.com/gtaylor/python-colormath',
download_url='http://pypi.python.org/pypi/colormath/',
packages=['colormath'],
platforms=['Platform Independent'],
license='BSD',
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
install_requires=['numpy', 'networkx>=2.0'],
)
|