forked from mnot/thor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (30 loc) · 998 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
32
#!/usr/bin/env python
from distutils.core import setup
import thor
setup(
name = 'thor',
version = thor.__version__,
description = 'Simple Event-Driven IO for Python',
author = 'Mark Nottingham',
author_email = 'mnot@mnot.net',
url = 'http://github.com/mnot/thor/',
download_url = \
'http://github.com/mnot/thor/tarball/thor-%s' % thor.__version__,
packages = ['thor', 'thor.http'],
provides = ['thor'],
long_description=open("README.rst").read(),
license = "MIT",
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Operating System :: POSIX',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: Proxy Servers',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)