-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 1.39 KB
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
[tool.poetry]
name = "hr-system" # It's good practice for the poetry package name to be distinct if needed
# or just "hr-system". The 'include' below defines the importable name.
version = "0.1.0"
description = "HR system powered by AI"
authors = ["Prateek Singh <prateeksingh9741@gmail.com>"] # Poetry's preferred author format
readme = "README.md"
# This line is CRITICAL for the src-layout:
# It tells Poetry your importable package 'hr_system' is found inside the 'src' directory.
packages = [{include = "hr_system", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.10,<4.0" # This is equivalent to ^3.10
# Let Poetry handle version constraints unless you have a specific reason
strands-agents = "*"
strands-agents-tools = "*"
strands-agents-builder = "*"
python-dotenv = "*"
boto3 = "*" # You'll need this for AWS
flask = "*" # For the server component
# Example scripts - adjust module:function paths as per your actual main.py
mcp = {extras = ["cli"], version = "^1.9.0"}
pypdf2 = "^3.0.1"
fastapi = {extras = ["standard"], version = "^0.115.12"}
pydantic = "*"
[tool.poetry.scripts]
run-agent = "hr_system.main:run_agent_cli_once" # Assuming run_agent_cli_once is in hr_system.main
start-server = "hr_system.main:start_hr_server_uvicorn"
[build-system]
requires = ["poetry-core>=1.0.0"] # Use a common, stable version of poetry-core
build-backend = "poetry.core.masonry.api"