-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 2.17 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (63 loc) · 2.17 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "flashalpha-fill-simulator"
version = "0.2.1"
description = "Realistic limit-order fill simulator for options credit/debit spreads. Engine-agnostic, data-source-agnostic."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "FlashAlpha" },
]
keywords = [
"options", "backtest", "fill-simulator", "credit-spread",
"market-making", "execution", "quantconnect", "limit-order",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Investment",
"Typing :: Typed",
]
dependencies = [] # zero runtime dependencies — pure stdlib
[project.optional-dependencies]
test = ["pytest>=7", "pytest-cov>=4", "hypothesis>=6"]
dev = ["ruff>=0.5", "mypy>=1.8"]
[project.urls]
Homepage = "https://github.com/FlashAlpha-lab/flashalpha-fill-simulator"
Documentation = "https://github.com/FlashAlpha-lab/flashalpha-fill-simulator/blob/master/docs/SPEC.md"
Repository = "https://github.com/FlashAlpha-lab/flashalpha-fill-simulator"
Issues = "https://github.com/FlashAlpha-lab/flashalpha-fill-simulator/issues"
Changelog = "https://github.com/FlashAlpha-lab/flashalpha-fill-simulator/blob/master/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["src/fillsim"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"
[tool.coverage.run]
source = ["src/fillsim"]
branch = true
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if TYPE_CHECKING:",
"\\.\\.\\.",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP", "N"]
ignore = ["E501"] # line length handled by formatter
[tool.mypy]
strict = true
python_version = "3.10"