File size: 397 Bytes
d9f5c15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"


[project]
name = "portfolio_optimization"
version = "1.0.0"
requires-python = ">=3.10"
dependencies = [
    'solverforge-legacy == 1.24.1',
    'fastapi == 0.111.0',
    'pydantic == 2.7.3',
    'uvicorn == 0.30.1',
    'pytest == 8.2.2',
]


[project.scripts]
run-app = "portfolio_optimization:main"