Create setup.py
Browse files
setup.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
+
import setuptools
|
| 3 |
+
|
| 4 |
+
setup(
|
| 5 |
+
name="prompt_injection",
|
| 6 |
+
version="0.1.0",
|
| 7 |
+
description="A brief description of your project",
|
| 8 |
+
long_description=open('README.md').read(),
|
| 9 |
+
long_description_content_type='text/markdown',
|
| 10 |
+
url="",
|
| 11 |
+
author="",
|
| 12 |
+
author_email="",
|
| 13 |
+
license="MIT",
|
| 14 |
+
classifiers=[
|
| 15 |
+
"Programming Language :: Python :: 3",
|
| 16 |
+
"License :: OSI Approved :: MIT License",
|
| 17 |
+
"Operating System :: OS Independent",
|
| 18 |
+
],
|
| 19 |
+
packages=find_packages(),
|
| 20 |
+
python_requires='>=3.6',
|
| 21 |
+
install_requires=[
|
| 22 |
+
# List your project's dependencies here
|
| 23 |
+
"requests",
|
| 24 |
+
"numpy",
|
| 25 |
+
"pandas",
|
| 26 |
+
],
|
| 27 |
+
entry_points={
|
| 28 |
+
"console_scripts": [
|
| 29 |
+
"your_command=your_package.module:function",
|
| 30 |
+
],
|
| 31 |
+
},
|
| 32 |
+
include_package_data=True,
|
| 33 |
+
package_data={
|
| 34 |
+
# Include any data files that need to be bundled with the package
|
| 35 |
+
"": ["*.txt", "*.md"],
|
| 36 |
+
},
|
| 37 |
+
)
|