-
Notifications
You must be signed in to change notification settings - Fork 167
/
pyproject.toml
47 lines (41 loc) · 1.39 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
41
42
43
44
45
46
47
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "toraniko"
version = "1.1.0"
description = "A multi-factor equity risk model for quantitative trading."
authors = ["0xfdf <0xfdf@implies.com>"]
maintainers = ["0xfdf <0xfdf@implies.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/0xfdf/toraniko"
repository = "https://github.com/0xfdf/toraniko"
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering"
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
numpy = "~1.26.2"
polars = "~1.0.0"
[tool.poetry.dev-dependencies]
pytest = "~7.4.4"
[tool.poetry.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 = 120
fix = false
select = ["E", "F", "I", "N", "Q", "R", "S", "T", "U", "W", "Y"]
[tool.black]
line-length = 120