Text Generation
Transformers
English
AI
NLP
Cybersecurity
Ethical Hacking
Pentesting
Inference Endpoints
Canstralian commited on
Commit
121945e
1 Parent(s): 76ae3bb

Create setup.py

Browse files
Files changed (1) hide show
  1. setup.py +29 -0
setup.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="pentest_ai",
5
+ version="0.1",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ "torch",
9
+ "transformers",
10
+ "streamlit",
11
+ ],
12
+ entry_points={
13
+ "console_scripts": [
14
+ "pentest_ai=app:main",
15
+ ],
16
+ },
17
+ author="Your Name",
18
+ author_email="[email protected]",
19
+ description="A Streamlit app for penetration testing AI",
20
+ long_description=open('README.md').read(),
21
+ long_description_content_type="text/markdown",
22
+ url="https://github.com/yourusername/pentest_ai",
23
+ classifiers=[
24
+ "Programming Language :: Python :: 3",
25
+ "License :: OSI Approved :: Apache Software License",
26
+ "Operating System :: OS Independent",
27
+ ],
28
+ python_requires='>=3.6',
29
+ )