-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.47 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[project]
name = "prosperity3bt"
description = "Backtester for IMC Prosperity 3 algorithms"
version = "0.0.0"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["imc", "prosperity", "backtest", "backtester"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.9"
dependencies = [
"ipython>=8.18.1",
"jsonpickle>=4.0.2",
"orjson>=3.10.15",
"tqdm>=4.67.1",
"typer>=0.15.2",
]
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
prosperity3bt = "prosperity3bt.__main__:main"
[project.urls]
Repository = "https://github.com/jmerle/imc-prosperity-3-backtester"
Issues = "https://github.com/jmerle/imc-prosperity-3-backtester/issues"
Changelog = "https://github.com/jmerle/imc-prosperity-3-backtester/releases"
[tool.setuptools.packages.find]
include = ["prosperity3bt", "prosperity3bt.*"]
[tool.setuptools.package-data]
prosperity3bt = ["resources/*/*.csv"]
[tool.uv]
dev-dependencies = [
"mypy>=1.15.0",
"ruff>=0.9.7",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "prosperity3bt.datamodel"
ignore_errors = true