-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
31 lines (26 loc) · 802 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
import re
from setuptools import setup
import ast
setup(
name='jolla',
keywords=['back-end', 'framework', 'RESTful', 'gevent'],
version='1.1.12',
description='high performance RESTful framework',
author='aljun',
author_email='[email protected]',
license='Apache',
url='https://github.com/salamer/jolla',
download_url='https://github.com/salamer/jolla',
install_requires=[
'gevent'
],
packages=['jolla'],
classifiers=[
'Development Status :: 3 - Alpha',
"License :: OSI Approved :: Apache Software License",
'Environment :: Web Environment',
"Programming Language :: Python :: 2.7",
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)