forked from JohnHammond/katana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (52 loc) · 1.14 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
#!/usr/bin/env python
from setuptools import find_packages
from setuptools import setup
dependencies = [
"wheel",
"requests",
"argparse",
"python-magic",
"pyzbar",
"pillow",
"clipboard",
"jinja2",
"pyenchant",
"pycrypto",
"pytesseract",
"dulwich",
"bs4",
"base58",
"pysocks",
"scipy",
"pydub",
"matplotlib",
"pdftotext",
"PyPDF2",
"pyopenssl",
"primefac @ https://github.com/elliptic-shiho/primefac-fork",
"sphinx",
"sphinx-rtd-theme",
"gmpy",
"cmd2",
"watchdog",
"pygments",
"regex",
"dbus-python",
"notify2",
]
dependency_links = [
"git+https://github.com/elliptic-shiho/primefac-fork#egg=primefac-1.0.0"
]
# Setup
setup(
name="katana",
version="2.0",
description="Automatic Capture the Flag Problem Solver",
author="John Hammond/Caleb Stewart",
url="https://github.com/JohnHammond/katana",
packages=find_packages(),
package_data={"katana": ["templates/*"]},
entry_points={"console_scripts": ["katana=katana.__main__:main"]},
install_requires=dependencies,
dependency_links=dependency_links,
)