forked from cdump/investments
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (34 loc) · 1.02 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
[tool.poetry]
name = "investments"
version = "0.1.26"
description = "Analysis of Interactive Brokers reports for tax reporting in Russia"
license = "MIT"
authors = ["Maxim Andreev <[email protected]>"]
readme = "README.md"
repository = "https://github.com/cdump/investments"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Investment"
]
[tool.poetry.scripts]
ibtax = "investments.ibtax.ibtax:main"
ibdds = "investments.ibdds.ibdds:main"
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.3.5"
requests = "^2.27.1"
tabulate = "^0.8.9"
aiomoex = "^2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
mypy = "^0.931"
wemake-python-styleguide = "^0.16.0"
types-requests = "^2.27.3"
types-tabulate = "^0.8.5"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"