-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 899 Bytes
/
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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "grepX",
version = "1.4",
author = "Devansh Raghav",
author_email = "indiananonymous75@gmail.com",
license = "MIT",
keywords = ["grepX", "Bug Bounty", "pentesting", "security", "hacking"],
url = "https://github.com/DevanshRaghav75/grepX",
packages=find_packages(),
long_description=read('README.md'),
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
install_requires=[
'colorama',
],
entry_points={
'console_scripts': [
'grepx = grepX.__main__:grep'
]
},
)