-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
28 lines (25 loc) · 878 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="striptls",
version="0.5",
packages=["striptls"],
author="tintinweb",
author_email="tintinweb@oststrom.com",
description=(
"poc implementation of STARTTLS stripping attacks"),
license="GPLv2",
keywords=["striptls", "starttls", "strip", "attack", "proxy"],
url="https://github.com/tintinweb/striptls/",
download_url="https://github.com/tintinweb/striptls/tarball/v0.5",
#python setup.py register -r https://testpypi.python.org/pypi
long_description=read("README.rst") if os.path.isfile("README.rst") else read("README.md"),
install_requires=[],
package_data={
'striptls': ['striptls'],
},
)