-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
40 lines (36 loc) · 1.17 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def readme():
with open('README.rst', encoding = 'utf-8') as f:
return f.read()
setup(
name='warp-proxy',
version='0.2.0',
description='Simple http transparent proxy made in Python 3.4',
long_description=readme(),
url='https://github.com/devunt/warp',
author='JuneHyeon Bae',
author_email='devunt' '@' 'gmail.com',
license='MIT License',
py_modules=['warp'],
entry_points='''
[console_scripts]
warp = warp:main
''', # for setuptools
scripts=['warp.py'], # for distutils without setuptools
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet :: WWW/HTTP',
]
)