-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (36 loc) · 1.1 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
from setuptools import setup
from setuptools import find_packages
import sys
import os
version = '0.2'
setup(name='TwistedEve',
version=version,
description="An eavesdropping & man-in-the-middle attack tool",
long_description=open("README.txt").read(),
classifiers=["Framework :: Twisted",
"License :: OSI Approved :: GNU Affero General Public \
License v3"
],
keywords='mitm tls twisted proxy',
author='Dimitris Moraitis',
author_email='[email protected]',
url='https://unweb.me/projects/twistedeve',
license='AGPL',
packages=find_packages('src'),
package_dir = {'':'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'Twisted',
'tlslite>0.3.8',
],
dependency_links=[
'https://nodeload.github.com/d-mo/tlslite/tarball/master#egg=tlslite-0.3.9dev',
],
entry_points={
'console_scripts': [
'twistedeve = twistedeve.main:main',
],
}
)