forked from corydodt/Codado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 884 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
31
32
33
from inspect import cleandoc
from setuptools import setup
_version = {}
exec(open('codado/_version.py').read(), _version)
setup(
name = 'Codado',
packages = ['codado', 'codado.kleinish'],
version = _version['__version__'],
description = 'A collection of system development utilities',
author = 'Cory Dodt',
author_email = '[email protected]',
url = 'https://github.com/corydodt/Codado',
keywords = ['twisted', 'utility'],
classifiers = [
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
scripts = ['bin/jentemplate'],
install_requires=cleandoc('''
attrs>=17.1.0
crosscap
jinja2
mock>=2.0.0,<2.1.0
python-dateutil==2.4.0
pytz>=2015.4
pyyaml
twisted
''').split()
)