hirann commited on
Commit
3cbfb29
·
verified ·
1 Parent(s): a435665

Upload pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pyproject.toml +19 -5
pyproject.toml CHANGED
@@ -1,10 +1,24 @@
 
 
 
 
1
  [project]
2
- name = "overview_env"
3
  version = "0.1.0"
4
  description = "Overview environment for text analysis"
5
  requires-python = ">=3.10"
6
- dependencies = ["openenv-core>=0.1.0", "fastapi>=0.109.0", "uvicorn>=0.27.0", "pydantic>=2.5.0"]
 
 
 
 
 
7
 
8
- [build-system]
9
- requires = ["setuptools>=61.0"]
10
- build-backend = "setuptools.build_meta"
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
  [project]
6
+ name = "openenv-overview-env"
7
  version = "0.1.0"
8
  description = "Overview environment for text analysis"
9
  requires-python = ">=3.10"
10
+ dependencies = [
11
+ "openenv-core[core]>=0.2.2",
12
+ "fastapi>=0.115.0",
13
+ "pydantic>=2.0.0",
14
+ "uvicorn[standard]>=0.24.0",
15
+ ]
16
 
17
+ [tool.setuptools]
18
+ include-package-data = true
19
+ packages = [
20
+ "overview_env",
21
+ "overview_env.server",
22
+ "overview_env.tasks",
23
+ ]
24
+ package-dir = { "" = "." }