Spaces:
Sleeping
Sleeping
Upload pyproject.toml
Browse files- pyproject.toml +57 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=45", "wheel"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "bug-report-structuring-env"
|
| 7 |
+
version = "1.0.0"
|
| 8 |
+
description = "An OpenEnv environment for structuring messy bug reports using LLM agents"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.10"
|
| 11 |
+
license = {text = "MIT"}
|
| 12 |
+
authors = [
|
| 13 |
+
{name = "SAI-RAHUL-ROKKAM", email = "sairahulrokkam@gmail.com"}
|
| 14 |
+
]
|
| 15 |
+
keywords = ["openenv", "reinforcement-learning", "llm", "bug-reports"]
|
| 16 |
+
classifiers = [
|
| 17 |
+
"Development Status :: 4 - Beta",
|
| 18 |
+
"Intended Audience :: Developers",
|
| 19 |
+
"License :: OSI Approved :: MIT License",
|
| 20 |
+
"Programming Language :: Python :: 3",
|
| 21 |
+
"Programming Language :: Python :: 3.10",
|
| 22 |
+
"Programming Language :: Python :: 3.11",
|
| 23 |
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
| 24 |
+
]
|
| 25 |
+
|
| 26 |
+
dependencies = [
|
| 27 |
+
"fastapi==0.115.6",
|
| 28 |
+
"uvicorn==0.34.0",
|
| 29 |
+
"pydantic==2.10.4",
|
| 30 |
+
"requests==2.32.3",
|
| 31 |
+
"openai==1.58.1",
|
| 32 |
+
]
|
| 33 |
+
|
| 34 |
+
[project.optional-dependencies]
|
| 35 |
+
dev = [
|
| 36 |
+
"pytest>=7.0",
|
| 37 |
+
"pytest-cov>=3.0",
|
| 38 |
+
]
|
| 39 |
+
|
| 40 |
+
[project.urls]
|
| 41 |
+
Repository = "https://github.com/SAI-RAHUL-ROKKAM/meta_hack"
|
| 42 |
+
Documentation = "https://huggingface.co/spaces/RAHUL-13/bug-report-structuring-env"
|
| 43 |
+
|
| 44 |
+
[tool.setuptools]
|
| 45 |
+
packages = ["src"]
|
| 46 |
+
|
| 47 |
+
[tool.pytest.ini_options]
|
| 48 |
+
testpaths = ["tests"]
|
| 49 |
+
python_files = "test_*.py"
|
| 50 |
+
|
| 51 |
+
[tool.black]
|
| 52 |
+
line-length = 100
|
| 53 |
+
target-version = ['py310', 'py311']
|
| 54 |
+
|
| 55 |
+
[tool.isort]
|
| 56 |
+
profile = "black"
|
| 57 |
+
line_length = 100
|