File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments