forked from robcarver17/pysystemtrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (50 loc) · 1.36 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
[project]
name = "pysystemtrade"
version = "1.80"
authors = [
{ name="Robert Carver", email="[email protected]" },
]
description = "Systematic futures trading in Python"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: GNU v3",
"Operating System :: Linux",
]
[project.urls]
"Homepage" = "https://github.com/robcarver17/pysystemtrade"
"Bug Tracker" = "https://github.com/robcarver17/pysystemtrade/issues"
[tool.pytest.ini_options]
norecursedirs = "examples"
addopts = "--doctest-modules --ignore=systems/provided/moretradingrules/temp.py"
log_cli = "true"
log_cli_level = 10
log_format = '%(asctime)s %(levelname)s %(name)s %(message)s'
log_date_format = '%Y-%m-%d %H:%M:%S'
doctest_optionflags = ["ELLIPSIS", "NUMBER", "NORMALIZE_WHITESPACE"]
testpaths = [
# "syscore",
# "syscore/interactive/display",
"syscore/pandas",
"syscore/tests",
# "sysdata",
"sysdata/config",
# "sysdata/sim",
"sysdata/tests",
"sysinit/futures/tests",
# "syslogdiag",
"systems/tests",
"sysobjects/production",
"sysobjects/tests",
# "sysquant/estimators",
"sysquant/optimisation",
# "systems",
# "systems/accounts",
# "systems/provided",
# "systems/provided/futures_chapter15",
"tests",
]
[tool.black]
line-length = 88
target-version = ['py310']
required-version = '23.11.0'