This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
78 lines (73 loc) · 2.84 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
73
74
75
76
77
78
#!/usr/bin/env python3
from setuptools import setup, find_packages
REPOSITORY:str = "https://www.github.com/cosasdepuma/mrrobot"
def readme() -> str:
with open("README.md","rb") as README:
str(README.read(),encoding="utf-8") # FIXME: Valid README
return "MrRobot"
def requirements() -> list:
with open("requirements.txt","r") as dependencies:
return dependencies.readlines()
setup(
name='mrrobot',
version='1.0.3',
description='Just another robot to automate the hacking process',
long_description=readme(),
long_description_content_type="text/markdown",
license="GPL-3.0",
keywords="mrrobot elliot hacking ctf flag",
author='Kike Fontan (@CosasDePuma)',
author_email='[email protected]',
url="https://fsundays.tech/",
project_urls={
"Bug Tracker": f"{REPOSITORY}/issues",
"Documentation": REPOSITORY,
"Source Code": REPOSITORY
},
packages=find_packages(),
zip_safe=True,
install_requires=requirements(),
python_requires=">=3.8",
platforms=["any"],
entry_points={ 'console_scripts': ['mrrobot=mrrobot:entrypoint'] },
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: Free For Educational Use",
"License :: Free for non-commercial use",
"License :: Free To Use But Restricted",
"Natural Language :: English",
"Natural Language :: Spanish",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Education",
"Topic :: Education :: Testing",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Puzzle Games",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Security",
"Topic :: Security :: Cryptography",
"Topic :: Software Development",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"Topic :: Text Processing",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities"
]
)