-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.09 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
#!/usr/bin/env python
import sys
from distutils.core import setup
assert sys.version_info >= (3, 3), NotImplementedError("Python 3.3"
"or higher is need.")
what_is_zest = open('./README.md', 'r').read()
setup(name='zest',
version='0.0.1-alpha',
description='asynchronous and lightweight web framwork of Python',
long_description=what_is_zest,
author='kzing',
author_email='[email protected]',
url='http://pyzest.com',
packages=['zest', 'zest.db', 'zest.ext', 'zest.helper'],
license='APL',
platforms='any',
install_requires=['Mako>=1.0.0'],
classifiers=[
"Programming Language :: Python :: 3.4",
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
]
)