-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (68 loc) · 2.51 KB
/
Copy pathsetup.py
File metadata and controls
71 lines (68 loc) · 2.51 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from setuptools import setup
if __name__ == "__main__":
with open("README.rst") 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 :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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,
long_description_content_type="text/x-rst",
python_requires=">=3.9",
setup_requires=["incremental"],
use_incremental=True,
install_requires=[
"attrs>=20.1.0",
"hyperlink",
"incremental",
"Tubes",
"Twisted>=16.6", # 16.6 introduces ensureDeferred
"typing_extensions ; python_version<'3.10'",
# PyPy doesn't have hashlib.scrypt, which we need for secure
# password storage.
"cryptography ; platform_python_implementation == 'PyPy'",
"Werkzeug",
"zope.interface",
],
extras_require={
"storage": ["dbxs"],
},
keywords="twisted flask werkzeug web",
license="MIT",
name="klein",
packages=[
"klein",
"klein.storage",
"klein.storage.memory",
"klein.storage.memory.test",
"klein.storage.passwords",
"klein.storage.passwords.test",
"klein.storage.sql",
"klein.storage.sql.test",
"klein.test",
"klein.storage.test",
],
package_dir={"": "src"},
package_data={
"klein": ["py.typed"],
"klein.storage.sql": ["basic_auth_schema.sql"],
},
url="https://github.com/twisted/klein",
maintainer="Twisted Matrix Laboratories",
maintainer_email="twisted@python.org",
zip_safe=False,
)