-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.18 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
[tool.black]
line-length = 160
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
| venv
| \.history
)/
'''
[tool.isort]
profile = "black"
skip = ["migrations", ".env", "venv", ".local", ".history", ".vscode"]
skip_glob = ["lib/*"]
[tool.poetry]
name = "stock-investment-split"
version = "0.1.1"
description = "Calculate how much to invst in each instrument (stock) out of a basket to achieve a target % allocation for each instrument (stock)."
authors = ["Ashutosh <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
repository = "https://github.com/ashu-tosh-kumar/stock-investment-split"
[tool.poetry.dependencies]
python = "^3.9.0"
numpy = "^1.26.4"
pydantic = "^2.6.4"
scipy = "^1.12.0"
tabulate = "^0.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-cov = "^4.1.0"
pytest-mock = "^3.12.0"
pytest-randomly = "^3.15.0"
syrupy = "^4.6.1"
black = "^24.3.0"
flake8 = "^7.0.0"
isort = "^5.13.2"
pre-commit = "^3.7.0"
coverage = "^7.6.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"