-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (57 loc) · 1.56 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
59
60
61
62
63
64
[tool.poetry]
name = "my-santander-finance"
version = "0.3.6"
description = "automated process to obtain the consumption of the bank credit and debit cards, classify them and generate a dashboard"
authors = ["Oscar Paniagua <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/opaniagu/my-santander-finance"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.10",
"Topic :: Office/Business :: Financial :: Accounting",
"License :: OSI Approved :: MIT License"
]
[tool.poetry.dependencies]
python = "^3.10"
selenium = "^4.3.0"
PyAutoGUI = "^0.9.53"
webdriver-manager = "^3.7.1"
pywin32 = "^304"
pydantic = "^1.9.1"
pandas = "^1.4.3"
numpy = "^1.23.0"
xlrd = "^2.0.1"
click = "^8.1.3"
bumpversion = "^0.6.0"
flake8 = "^4.0.1"
black = "^22.6.0"
isort = "^5.10.1"
pre-commit = "^2.19.0"
requests = "^2.28.1"
mkdocs-material = "^8.3.9"
mkdocs = {extras = ["i18n"], version = "^1.3.0"}
Markdown = "^3.4.1"
Jinja2 = "^3.1.2"
typer = "^0.6.1"
sqlalchemy = "^2.0.1"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
black = {version = "^22.6.0", allow-prereleases = true}
pre-commit = "^2.19.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
packages = [
{ include = "my-santander-finance" },
]
[tool.poetry.scripts]
sanfi = "my_santander_finance.sanfi:main"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
multi_line_output = 3