Spaces:
Sleeping
Sleeping
File size: 586 Bytes
a532053 13904c3 a532053 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | [project]
name = "expressly_server"
version = "0.1.1"
description = "Expressly - Text Transformation App"
authors = [{ name = "Deepak Pant", email = "deepak.93p@gmail.com" }]
requires-python = ">=3.10,<=3.13"
dependencies = [
"crewai[tools]>=0.86.0,<1.0.0",
"gradio>=5.12.0,<5.13.0"
]
[project.scripts]
expressly = "expressly_server.web_app:launch"
run_crew = "expressly_server.main:run"
train = "expressly_server.main:train"
replay = "expressly_server.main:replay"
test = "expressly_server.main:test"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
|