-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.23 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
38
39
40
41
42
43
44
45
from __future__ import with_statement
import codecs
from setuptools import setup
def readme():
with codecs.open('README.rst', encoding='utf-8') as f:
return f.read()
setup(
name='Janitor',
version='0.1.1',
url='https://github.com/yoloseem/janitor',
license='MIT License',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
],
author='Hyunjun Kim',
author_email='[email protected]',
description='Simple HTTP Server behind the OAuth',
long_description=readme(),
py_modules=['janitor'],
install_requires=[
'Flask',
'gevent',
'wsgi-oauth2',
],
entry_points={
'console_scripts': [
'janitor=janitor:run'
],
},
zip_safe=False,
)