-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 743 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 743 Bytes
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
import setuptools
import os
#from sudo_root import version
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = read("requirements.txt").split()
setuptools.setup(
name="sudo_root",
version="0.1",#version,
url="https://github.com/sudo-root-team/sudo_root",
author="Sudo_root Team",
author_email="ayouben9@gmail.com",
description="Library focused on CTF and cyber-security tools",
long_description=read("README.md"),
long_description_content_type="text/markdown",
keywords="ctf pwn crypto forensic stegano web reverse engineering cyber-security security",
install_requires=requirements,
packages=setuptools.find_packages(),
license="GPLv3"
)