-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (41 loc) · 1.65 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
#!/bin/env python
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(name="pykalimux",
version="1.3",
description="This is a python script by which you can install Kali Nethunter (Kali Linux) in your termux application without rooted phone.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rc-chuah/pykalimux",
author="RC Chuah",
author_email="[email protected]",
license="GNU General Public License v3 (GPLv3)",
keywords=["kali", "kalilinux", "kalinethunter", "infosec", "cybersec", "infosecurity", "cybersecurity"],
packages=["pykalimux"],
entry_points={
"console_scripts": [
"pykalimux = pykalimux.pykalimux:main",
]
},
project_urls={
"Source": "https://github.com/rc-chuah/pykalimux",
"Source": "https://github.com/RaynerSec/pykalimux",
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: Android",
"Topic :: Security",
"Topic :: Utilities",
],
zip_safe=False
)