Create pyproject.toml
Browse files- pyproject.toml +32 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["flit_core >=3.2,<4"]
|
| 3 |
+
build-backend = "flit_core.buildapi"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "prompt_injection"
|
| 7 |
+
version = "0.0.1"
|
| 8 |
+
description = "A short description of the project."
|
| 9 |
+
authors = [
|
| 10 |
+
{ name = "Your name (or your organization/company/team)" },
|
| 11 |
+
]
|
| 12 |
+
license = { file = "LICENSE" }
|
| 13 |
+
readme = "README.md"
|
| 14 |
+
classifiers = [
|
| 15 |
+
"Programming Language :: Python :: 3",
|
| 16 |
+
"License :: OSI Approved :: MIT License"
|
| 17 |
+
]
|
| 18 |
+
requires-python = "~=3.10"
|
| 19 |
+
|
| 20 |
+
[tool.black]
|
| 21 |
+
line-length = 99
|
| 22 |
+
include = '\.pyi?$'
|
| 23 |
+
exclude = '''
|
| 24 |
+
/(
|
| 25 |
+
\.git
|
| 26 |
+
| \.venv
|
| 27 |
+
)/
|
| 28 |
+
'''
|
| 29 |
+
|
| 30 |
+
[tool.ruff.lint.isort]
|
| 31 |
+
known_first_party = ["prompt_injection"]
|
| 32 |
+
force_sort_within_sections = true
|