-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
import pycolorname
with open('requirements.txt') as requirements:
required = requirements.read().splitlines()
with open('test-requirements.txt') as requirements:
test_required = requirements.read().splitlines()
if __name__ == "__main__":
setup(name='pycolorname',
version=pycolorname.__version__,
description='Provides common color systems.',
author="DrTrigon",
author_email="[email protected]",
maintainer="AbdealiJK",
maintainer_email='[email protected]',
url='https://github.com/AbdealiJK/pycolorname',
platforms='any',
packages=find_packages(exclude=["build.*", "*.tests.*", "*.tests"]),
install_requires=required,
tests_require=test_required,
license="MIT",
package_data={'pycolorname': ["VERSION", "data/*"]},
# from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: MacOS X',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: Implementation :: CPython'])