forked from gtaylor/python-colormath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (38 loc) · 1.38 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
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",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
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="[email protected]",
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"],
extras_require={"development": ["black", "flake8", "nose", "pre-commit", "sphinx"]},
)