-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.34 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fingpt_trader"
version = "0.1.0"
description = "FinGPT Market Inefficiency Detection System"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Victor Jotham Ashioya", email = "ashioyajotham@icloud.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11"
]
dependencies = [
# Dependencies will be read from requirements.txt
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"mypy",
"flake8",
"pytest-asyncio"
]
[project.scripts]
fingpt-trade = "scripts.live_trade:main"
fingpt-backtest = "scripts.backtest:main"
fingpt-analyze = "scripts.analyze:main"
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
py_version = 311
[tool.bandit]
exclude_dirs = ["tests", "venv", ".git", "__pycache__"]
skips = ["B101", "B104"] # Skip assert statements and hardcoded bind
targets = ["fingpt_trader"]
[tool.bandit.assert_used]
skips = ["test_*.py"]
[tool.bandit.hardcoded_bind_all_interfaces]
skips = ["start_bot.py"]