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