-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 779 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "govscheme-env"
version = "1.0.0"
description = "OpenEnv environment for Indian Government Scheme Eligibility Matching"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = ["openenv", "rl", "government", "india", "welfare", "eligibility"]
dependencies = [
"fastapi==0.111.0",
"uvicorn[standard]==0.30.1",
"pydantic>=2.7.0",
"python-multipart==0.0.9",
"requests>=2.32.0",
"openai>=1.30.0",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "app:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["govscheme_env*"]