forked from twisted/klein
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.45 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
from setuptools import setup
if __name__ == "__main__":
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
description="werkzeug + twisted.web",
long_description=long_description,
setup_requires=["incremental"],
use_incremental=True,
install_requires=[
"six",
"Twisted>=15.5",
"werkzeug",
"incremental",
],
keywords="twisted flask werkzeug web",
license="MIT",
name="klein",
packages=["klein", "klein.test"],
package_dir={"": "src"},
url="https://github.com/twisted/klein",
maintainer='Amber Brown (HawkOwl)',
maintainer_email='hawkowl@twistedmatrix.com',
)