forked from LaplaceKorea/OrderBookMatchingEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (71 loc) · 1.83 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "order-matching"
description = "Order Book Matching Engine"
authors = [
{name = "Stanislav Khrapov", email = "khrapovs@gmail.com"},
{name = "Akanksha Toshniwal", email = "akanksha.toshniwal@chintai.io"},
{name = "Shannen Tioniwar", email = "shannen.tioniwar@chintai.io"}
]
readme = "README.md"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
requires-python = ">=3.10"
dependencies = [
"pandas",
"pandera",
"faker"
]
dynamic = ["version"]
[project.urls]
Source = "https://github.com/khrapovs/OrderBookMatchingEngine"
Documentation = "https://order-book-matching-engine.readthedocs.io/"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-xdist",
"pytest-benchmark[histogram]"
]
doc = [
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-macros-plugin",
"pymdown-extensions"
]
dev = [
"pre-commit",
]
[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--cov-config=.coveragerc --doctest-modules --doctest-glob='*.md' -n=auto --benchmark-disable"
testpaths = ["tests", "src", "README.md"]
[tool.setuptools_scm]
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
select = ["E", "F", "D", "B", "I", "ARG"]
target-version = "py310"
src = ["src", "tests"]
ignore = ["D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D213", "D417"]
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.mypy]
ignore_missing_imports = true
install_types = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
non_interactive = true
no_strict_optional = true