-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (32 loc) · 941 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
33
34
35
36
37
#!/usr/bin/env python
"""
breach_buster
=================
Replacement for Django's gzip middleware. Protects against BREACH.
"""
from setuptools import setup
setup(
name='breach_buster',
version='0.0.3',
author='Adam DePrince',
author_email='[email protected]',
description='BREACH resistant gzip middleware for Django',
url="https://github.com/wnyc/breach_buster",
long_description=__doc__,
py_modules=[
'breach_buster/__init__',
'breach_buster/middleware/__init__',
'breach_buster/middleware/gzip',
'breach_buster/examples/__init__',
'breach_buster/examples/demo_server',
],
packages=['breach_buster',],
zip_safe=True,
license='GPLv3',
include_package_data=True,
classifiers=[],
scripts=['scripts/breach_buster_demo_client','scripts/breach_buster_demo_server'],
install_requires=[
'web.py'
]
)