Skip to content

Commit 105a3af

Browse files
Add setup.py for GraphQLNomad package
1 parent 530dbe2 commit 105a3af

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

setup.py

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
from setuptools import setup, find_packages
2+
3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
6+
setup(
7+
name="graphqlnomad",
8+
version="1.0.0",
9+
author="CYBWithFlourish",
10+
author_email="project.samclak@gmail.com",
11+
description="An integrated tool to detect, fingerprint, and explore GraphQL endpoints.",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/CYBWithFlourish/GraphQLNomad",
15+
packages=find_packages(),
16+
install_requires=[
17+
"requests",
18+
"colorama",
19+
],
20+
classifiers=[
21+
"Programming Language :: Python :: 3",
22+
"License :: OSI Approved :: Apache 2.0 License",
23+
"Operating System :: OS Independent",
24+
"Environment :: Console",
25+
"Topic :: Security",
26+
],
27+
python_requires='>=3.6',
28+
entry_points={
29+
'console_scripts': [
30+
'graphqlnomad=graphqlnomad.nomad:main',
31+
],
32+
},
33+
)

0 commit comments

Comments
 (0)