forked from SWE-agent/SWE-ReX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project metadata in pyproject.toml
- Update keywords to better reflect project purpose - Add Development Status classifier (Beta) - Add Python 3.10 classifier - Add Science/Research audience classifier - Update project URLs to point to SWE-ReX repositories Fixes SWE-agent#104 Co-Authored-By: Erkin Alp Güney <[email protected]>
- Loading branch information
1 parent
0061207
commit 4d1597c
Showing
1 changed file
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ description = "Sandboxed code execution for AI agents, locally or on the cloud." | |
readme = "README.md" | ||
requires-python = ">=3.10" | ||
license = {file = "LICENSE"} | ||
keywords = ["nlp", "agents", "code"] | ||
keywords = ["ai-agents", "shell", "sandbox", "cloud-computing", "deployment"] | ||
authors = [ | ||
{name = "Kilian Lieret", email = "[email protected]" }, | ||
{name = "Carlos E. Jimenez", email = "[email protected]" }, | ||
|
@@ -21,11 +21,14 @@ authors = [ | |
classifiers = [ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha, 4 - Beta, 5 - Production/Stable | ||
"Development Status :: 4 - Beta", | ||
"Operating System :: OS Independent", | ||
# Indicate who your project is intended for | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
# Pick your license as you wish | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3 :: Only", | ||
] | ||
|
@@ -77,11 +80,11 @@ version = {attr = "swerex.__version__"} | |
where = ["src"] | ||
namespaces = false | ||
|
||
# [project.urls] | ||
# "Homepage" = "https://swe-agent.com" | ||
# "Bug Reports" = "http://github.com/princeton-nlp/SWE-agent/issues" | ||
# "Documentation" = "https://princeton-nlp.github.io/SWE-agent/" | ||
# "Source" = "http://github.com/princeton-nlp/SWE-agent" | ||
[project.urls] | ||
"Homepage" = "https://swe-rex.com" | ||
"Bug Reports" = "https://github.com/SWE-agent/SWE-ReX/issues" | ||
"Documentation" = "https://swe-rex.com" | ||
"Source" = "https://github.com/SWE-agent/SWE-ReX" | ||
|
||
[project.scripts] | ||
swerex-remote = "swerex.server:main" | ||
|