-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
53 lines (44 loc) · 2.19 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
from setuptools import setup, find_packages
from codecs import open
from os import path
# Different from the README.md, because PyPi struggles with showing PNG images
long_description = '''# elementals
Python package with basic utilities for CTF scripts (works well for exploit PoCs too).
## Install
```pip install elementals```
## Read The Docs
https://elementals.readthedocs.io/
## Github
https://github.com/eyalitki/elementals
## Brief
The **elementals** python package is a utility package with handy tools for CTF scripts and PoC-style scripts. What was first implemented for personal use in small research scripts was now upgraded to be used by security researchers as a lightweight substitute to the famous pwntools package.
The features included in **elementals** are:
* **Logger:** Basic (logging based) logger - configured and ready to use
* **Prompter:** Metasploit based stdout wrapper for the logger
* **ProgressBar:** User-friendly graphical progress bar
* **StatusBar:** User-friendly graphical status bar
* **createAnchor:** Creates a time-stamped output directory for all script outputs
* **hexDump:** Stylized hex dump for binary blobs / strings
## Used by
The **elementals** package is used in most of my scripts and also in my public Github projects:
* **Scout Debugger** - https://github.com/CheckPointSW/Scout
* **Karta (IDA Plugin)** - https://github.com/CheckPointSW/Karta
## References
* E-mail: eyal dot itkin at gmail dot com'''
setup(name='elementals',
version='1.3.3',
description='Basic utilities for CTF (or exploit) scripts',
author='Eyal Itkin',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/eyalitki/elementals',
license='MIT',
packages=find_packages(exclude=['tests']),
install_requires=['colorama', 'hexdump', 'pydocstyle', 'flake8', 'six'],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False)