-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 813 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
# coding=utf-8
from setuptools import find_packages, setup
setup(
name='augustine',
version='1.0.0',
packages=find_packages(),
author='Michael Brennan',
author_email='michael@michaelbrennan.net',
description='Tools for creating Python packages',
keywords='package tools',
url='https://github.com/mbrennan/augustine',
package_data={'': ['data/*']},
install_requires=['setuptools', 'typing'],
extras_require=dict(
color=['colorama', 'termcolor'],
run_command=['gevent']),
classifiers=[
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)