28 lines
505 B
TOML
28 lines
505 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "grid-trading"
|
|
version = "0.1.0"
|
|
description = "Local A-share and ETF grid trading management GUI"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"PySide6>=6.7",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8",
|
|
]
|
|
|
|
[project.scripts]
|
|
grid-trading = "grid_trading.app:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|