forked from edibledinos/pwnypack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (58 loc) · 1.78 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
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
72
from setuptools import setup
import sys
import os
__version__ = '0.6.0'
requires = [
'six',
'nose',
'capstone',
]
if (sys.version_info[0] == 2 and sys.version_info[1] >= 7) or \
(sys.version_info[0] == 3 and sys.version_info[1] >= 3):
requires.append('IPython')
if sys.version_info[:2] < (2, 7):
requires.extend([
'counter',
'ordereddict',
'argparse',
])
if sys.version_info[:2] < (3, 4):
requires.append('enum34')
def read_file(filename):
try:
with open(os.path.join(os.path.dirname(__file__), filename)) as f:
return f.read()
except IOError:
return ''
setup(
name='pwnypack',
packages=['pwny', 'pwnypack'],
version=__version__,
description='Official Certified Edible Dinosaurs CTF toolkit.',
long_description=read_file('README.rst') + '\n' + read_file('changelog.rst'),
author='Ingmar Steen',
author_email='[email protected]',
url='https://github.com/edibledinos/pwnypack/',
download_url='https://github.com/edibledinos/pwnypack/tarball/v%s' % __version__,
install_requires=requires,
tests_require=['mock', 'coverage'],
entry_points={
'console_scripts': [
'pwny=pwnypack.main:main',
],
},
keywords=['wargame', 'ctf'],
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Security',
'Topic :: Security :: Cryptography',
],
)