Spaces:
Runtime error
Runtime error
Update pyproject.toml
Browse files- pyproject.toml +7 -2
pyproject.toml
CHANGED
|
@@ -32,8 +32,12 @@ dependencies = [
|
|
| 32 |
"openai>=1.0.0",
|
| 33 |
"numpy>=1.20.0",
|
| 34 |
"pandas>=1.3.0",
|
|
|
|
| 35 |
]
|
| 36 |
|
|
|
|
|
|
|
|
|
|
| 37 |
[project.optional-dependencies]
|
| 38 |
dev = [
|
| 39 |
"pytest>=7.0.0",
|
|
@@ -48,11 +52,12 @@ Repository = "https://github.com/yourusername/customer-support-env.git"
|
|
| 48 |
Documentation = "https://github.com/yourusername/customer-support-env/blob/main/README.md"
|
| 49 |
|
| 50 |
[tool.setuptools]
|
| 51 |
-
packages = ["env", "graders"]
|
| 52 |
|
| 53 |
[tool.setuptools.package-data]
|
| 54 |
env = ["*.py"]
|
| 55 |
graders = ["*.py"]
|
|
|
|
| 56 |
|
| 57 |
[tool.black]
|
| 58 |
line-length = 100
|
|
@@ -75,4 +80,4 @@ exclude = '''
|
|
| 75 |
[tool.pytest.ini_options]
|
| 76 |
testpaths = ["tests"]
|
| 77 |
python_files = ["test_*.py"]
|
| 78 |
-
addopts = "-v"
|
|
|
|
| 32 |
"openai>=1.0.0",
|
| 33 |
"numpy>=1.20.0",
|
| 34 |
"pandas>=1.3.0",
|
| 35 |
+
"openenv>=0.2.0",
|
| 36 |
]
|
| 37 |
|
| 38 |
+
[project.scripts]
|
| 39 |
+
server = "server.app:main"
|
| 40 |
+
|
| 41 |
[project.optional-dependencies]
|
| 42 |
dev = [
|
| 43 |
"pytest>=7.0.0",
|
|
|
|
| 52 |
Documentation = "https://github.com/yourusername/customer-support-env/blob/main/README.md"
|
| 53 |
|
| 54 |
[tool.setuptools]
|
| 55 |
+
packages = ["env", "graders", "server"]
|
| 56 |
|
| 57 |
[tool.setuptools.package-data]
|
| 58 |
env = ["*.py"]
|
| 59 |
graders = ["*.py"]
|
| 60 |
+
server = ["*.py"]
|
| 61 |
|
| 62 |
[tool.black]
|
| 63 |
line-length = 100
|
|
|
|
| 80 |
[tool.pytest.ini_options]
|
| 81 |
testpaths = ["tests"]
|
| 82 |
python_files = ["test_*.py"]
|
| 83 |
+
addopts = "-v"
|