-
Notifications
You must be signed in to change notification settings - Fork 854
/
pyproject.toml
42 lines (38 loc) · 1.16 KB
/
pyproject.toml
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
35
36
37
38
39
40
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qstrader"
version = "0.3.0"
dependencies = [
"click>=8.1",
"matplotlib>=3.8",
"numpy>=2.0.0",
"pandas>=2.2",
"seaborn>=0.13",
]
authors = [
{name="Michael Halls-Moore", email="[email protected]"}
]
maintainers = [
{name="Juliette James", email="[email protected]"}
]
description = "QSTrader backtesting simulation engine"
readme = "README.md"
requires-python = ">= 3.9"
keywords = ["backtesting", "systematic trading", "algorithmic trading"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
]
[project.urls]
Homepage = "https://github.com/mhallsmoore/qstrader"
Issues = "https://github.com/mhallsmoore/qstrader/issues"
Documentation = "https://www.quantstart.com/qstrader/"
Website = "https://www.quantstart.com"