AgusSLC/Mobile_App_Shipping
0
1[project]2name = "mobile_app_shipping"3version = "0.1.0"4description = "mobile_app_shipping using crewAI"5authors = [{ name = "Your Name", email = "you@example.com" }]6requires-python = ">=3.10,<3.14"7dependencies = [8 "crewai[anthropic,google-genai,litellm,tools]>=1.0.0,<2.0.0",9 "google-genai>=1.0.0",10 "flask>=3.1.2",11 "requests>=2.32.5",12]13 14[project.scripts]15kickoff = "mobile_app_shipping.main:kickoff"16run_crew = "mobile_app_shipping.main:kickoff"17plot = "mobile_app_shipping.main:plot"18 19[build-system]20requires = ["hatchling"]21build-backend = "hatchling.build"22 23[tool.crewai]24type = "flow"25entry = "mobile_app_shipping.main:kickoff"26 27[tool.uv]28required-environments = [29 "sys_platform == 'darwin' and platform_machine == 'x86_64'",30 "sys_platform == 'linux' and platform_machine == 'x86_64'",31 "sys_platform == 'linux' and platform_machine == 'aarch64'",32]33 