ianalin123 commited on
Commit
91deb66
·
1 Parent(s): 076b995

chore: update package.json, pyproject.toml, and requirements.txt

Browse files
Files changed (3) hide show
  1. package.json +1 -0
  2. pyproject.toml +5 -0
  3. requirements.txt +5 -3
package.json CHANGED
@@ -24,6 +24,7 @@
24
  "react-app/jest"
25
  ]
26
  },
 
27
  "browserslist": {
28
  "production": [
29
  ">0.2%",
 
24
  "react-app/jest"
25
  ]
26
  },
27
+ "proxy": "http://localhost:7860",
28
  "browserslist": {
29
  "production": [
30
  ">0.2%",
pyproject.toml CHANGED
@@ -13,8 +13,13 @@ dependencies = [
13
  "numpy>=1.24.0",
14
  "openenv-core[core]>=0.2.1",
15
  "pydantic>=2.0.0",
 
16
  "shapely>=2.0.0",
 
17
  ]
18
 
 
 
 
19
  [tool.pytest.ini_options]
20
  pythonpath = ["."]
 
13
  "numpy>=1.24.0",
14
  "openenv-core[core]>=0.2.1",
15
  "pydantic>=2.0.0",
16
+ "scipy>=1.10",
17
  "shapely>=2.0.0",
18
+ "uvicorn>=0.23.0",
19
  ]
20
 
21
+ [tool.hatch.build.targets.wheel]
22
+ packages = ["env", "openenv_runtime", "openenv_server", "server"]
23
+
24
  [tool.pytest.ini_options]
25
  pythonpath = ["."]
requirements.txt CHANGED
@@ -1,5 +1,7 @@
1
- shapely>=2.0.0
2
- numpy>=1.24.0
3
  fastapi>=0.100.0
4
- uvicorn>=0.23.0
 
5
  pydantic>=2.0.0
 
 
 
 
 
 
1
  fastapi>=0.100.0
2
+ numpy>=1.24.0
3
+ openenv-core[core]>=0.2.1
4
  pydantic>=2.0.0
5
+ scipy>=1.10
6
+ shapely>=2.0.0
7
+ uvicorn>=0.23.0