Skip to content

Commit e11bc35

Browse files
committed
setup file added
1 parent c897830 commit e11bc35

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

setup.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
author_email="[email protected]",
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+
)

0 commit comments

Comments
 (0)