Omkar1806 commited on
Commit
14142ac
·
verified ·
1 Parent(s): e56070a

Update pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +11 -11
pyproject.toml CHANGED
@@ -1,14 +1,8 @@
1
- [build-system]
2
- requires = ["setuptools>=61.0", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
  [project]
6
  name = "email-gatekeeper"
7
  version = "1.0.0"
8
- description = "Intelligent Email Gatekeeper RL Environment for Meta x PyTorch Hackathon"
9
- authors = [
10
- {name = "zerogravity"}
11
- ]
12
  dependencies = [
13
  "fastapi",
14
  "uvicorn",
@@ -17,9 +11,15 @@ dependencies = [
17
  "pydantic",
18
  "gradio",
19
  "pyyaml",
20
- "google-generativeai"
 
21
  ]
22
  requires-python = ">=3.10"
23
 
24
- [tool.setuptools.package-data]
25
- "*" = ["*.yaml", "*.csv", "*.txt"]
 
 
 
 
 
 
 
 
 
 
1
  [project]
2
  name = "email-gatekeeper"
3
  version = "1.0.0"
4
+ description = "Intelligent Email Gatekeeper RL Environment"
5
+ authors = [{name = "zerogravity"}]
 
 
6
  dependencies = [
7
  "fastapi",
8
  "uvicorn",
 
11
  "pydantic",
12
  "gradio",
13
  "pyyaml",
14
+ "google-generativeai",
15
+ "openenv-core>=0.2.0"
16
  ]
17
  requires-python = ">=3.10"
18
 
19
+ # --- YE LINE ZAROORI HAI (Missing server entry point fix) ---
20
+ [project.scripts]
21
+ server = "uvicorn:main"
22
+
23
+ [build-system]
24
+ requires = ["setuptools>=61.0"]
25
+ build-backend = "setuptools.build_meta"