-
Notifications
You must be signed in to change notification settings - Fork 45
/
pyproject.toml
38 lines (34 loc) · 1.49 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
[tool.poetry]
name = "arbitrage_research"
version = "0.1.0"
description = "arbitrage research contains examples of statistical arbitrage strategies to create mean reverting portfolio using arbitragelab library"
authors = ["Hudson and Thames Quantitative Research<[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://www.hudsonthames.org/"
repository = "https://github.com/hudson-and-thames/arbitrage_research"
keywords = ["stastical arbitrage", "mean reversion", "quantitative trading"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Office/Business :: Financial :: Investment"
]
[tool.poetry.urls]
"Bug Reports" = "https://github.com/hudson-and-thames/arbitrage_research/issues"
"Blog" = "https://hudsonthames.org/blog/"
"Apprenticeship Program" = "https://hudsonthames.org/apprenticeship-program/"
[tool.poetry.dependencies]
python = "~3.8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"