forked from 0xfdf/toraniko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pypoetry.toml
58 lines (51 loc) · 1.57 KB
/
pypoetry.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[project]
name = "toraniko"
version = "1.0.0"
description = "A multi-factor equity risk model for quantitative trading."
authors = [
{ name = "0xfdf", email = "[email protected]" },
]
maintainers = [
{ name = "0xfdf", email = "[email protected]" },
]
requires-python = ">=3.10"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
keywords = ["risk", "model", "portfolio", "optimization", "factor", "quant", "quantitative", "finance", "trading"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy>=1.26",
"polars>=0.20.3"
]
[project.urls]
Homepage = "https://github.com/0xfdf/toraniko"
Repository = "https://github.com/0xfdf/toraniko"
Issues = "https://github.com/0xfdf/toraniko/issues"
Changelog = "https://github.com/0xfdf/toraniko/releases"
[tool.ruff]
line-length = 88
fix = false
[tool.black]
line-length = 88
[tool.poetry]
name = "toraniko"
version = "1.0.0"
description = "A multi-factor equity risk model for quantitative trading."
authors = ["0xfdf <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "1.26.2"
polars = "^0.20.3"