-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·42 lines (40 loc) · 1.34 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
#!/usr/bin/env python
#from glob import glob
from setuptools import find_packages, setup
setup(
name='circuits.http',
version='0',
description='asynchronous HTTP framework',
long_description='',
author='SpaceOne',
author_email='space@wechall.net',
url='https://github.com/spaceone/circuits.http',
# download_url='',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license='MIT',
keywords='HTTP web proxy cache client server library',
platforms='POSIX',
packages=find_packages('.', exclude=['tests.*', 'tests']),
# scripts=glob('bin/*'),
install_requires=[],
entry_points={},
# test_suite='tests.main.main',
zip_safe=True
)