-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 984 Bytes
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 984 Bytes
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
#
# FILE: `StockTrader/pyproject.toml`
#
[build-system]
requires = ["setuptools>=69.2.0"]
build-backend = "setuptools.build_meta"
[project]
name='StockTrader'
version='0.1.0'
description='Financial Market Data Pipeline Application'
authors=[{name='Tom Hammons', email='hammons.thomas@gmail.com'}]
license={file='LICENSE'}
readme='README.md'
keywords=['algotrading', 'finance', 'market data', 'quant', 'quant finance']
dependencies = [
'python-dotenv>=1.0.1',
'pandas>=2.0.0',
'numpy>=1.24.4',
'pyarrow>=15.0.0',
'requests>=2.31.0',
]
[project.optional-dependencies]
dev = [
'black==25.1.0',
'pytest',
'pytest-subprocess'
]
airflow = [
'holidays>=0.40',
'fredapi>=0.5.1',
'minio>=7.2.0',
'redis>=5.0.0'
]
pricing = [
'QuantLib>=1.34',
'scipy>=1.10.0'
]
[tool.setuptools.packages.find]
where=["infrastructure/redis", "src", "scripts", "utils"]
[tool.pytest.ini_options]
pythonpath = ["src", "scripts", "utils"]
testpaths = ["tests"]
[tool.black]
line-length = 120