forked from joar/py-colorclassifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (28 loc) · 997 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
30
#!/usr/bin/env python3
from distutils.core import setup
import os
if os.path.exists('README.rst'):
long_description = open('README.rst', encoding = 'UTF-8').read()
else:
long_description = 'See http://github.com/jwandborg/py-colorclassifier'
setup(
name = 'colorclassifier',
version = '2.0.0',
description = 'Color classifier',
long_description = long_description,
author = 'Joar Wandborg',
author_email = '[email protected]',
url = 'https://github.com/jwandborg/py-colorclassifier',
packages = ['colorclassifier'],
requires = ['colormath'],
classifiers = [
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.0',
'Topic :: Utilities',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License (GPL)',
]
)