File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ from setuptools import setup , find_packages
2+
3+ setup (
4+ name = "pystealthrunner" ,
5+ version = "1.0.0" ,
6+ description = "Run Python scripts as background processes for ethical hacking and automation." ,
7+ long_description = open ("README.md" , encoding = "utf-8" ).read (),
8+ long_description_content_type = "text/markdown" ,
9+ author = "SdxShadow" ,
10+ 11+ url = "https://github.com/SdxShadow/PyStealthRunner" ,
12+ license = "MIT" ,
13+ packages = find_packages (),
14+ python_requires = ">=3.6" ,
15+ install_requires = [
16+ ],
17+ extras_require = {
18+ "dev" : [
19+ "pytest" ,
20+ "build" ,
21+ "twine"
22+ ]
23+ },
24+ classifiers = [
25+ "Programming Language :: Python :: 3" ,
26+ "License :: OSI Approved :: MIT License" ,
27+ "Operating System :: OS Independent" ,
28+ "Intended Audience :: Developers" ,
29+ "Intended Audience :: Information Technology" ,
30+ "Topic :: Security" ,
31+ "Topic :: Software Development :: Libraries :: Application Frameworks" ,
32+ ],
33+ include_package_data = True ,
34+ entry_points = {
35+ },
36+ )
You can’t perform that action at this time.
0 commit comments