-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
83 lines (77 loc) · 2.22 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.poetry]
name = "aurorae"
version = "0.0.2"
description = "A Python implementation of the CNAB240 file to perform bulk payments."
authors = [
"Mariane Pastor (Vinta Software) <[email protected]>",
"Rebeca Sarai (Vinta Software) <[email protected]>",
"Thiago Paim (Vinta Software) <[email protected]>",
"Jaênia Sousa (Vinta Software) <[email protected]>",
"Marcos Felipe <@marcosflp>",
]
license = "MIT"
readme = "README.md"
keywords = ["cnab240", "payments", "openbanking"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Spreadsheet",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.7"
attrs = "^21.2.0"
backcall = "^0.2.0"
decorator = "^5.0.9"
et-xmlfile = "^1.1.0"
iniconfig = "^1.1.1"
ipython = "^7.25.0"
ipython_genutils = "^0.2.0"
jedi = "^0.18.0"
openpyxl = "^3.0.7"
packaging = "^21.0"
parso = "^0.8.2"
pexpect = "^4.8.0"
pickleshare = "^0.7.5"
pluggy = "^0.13.1"
prompt-toolkit = "^3.0.19"
ptyprocess = "^0.7.0"
py = "^1.10.0"
Pygments = "^2.9.0"
pyparsing = "^2.4.7"
toml = "^0.10.2"
traitlets = "^5.0.5"
wcwidth = "^0.2.5"
pydantic = "^1.8.2"
fastapi = "^0.68.0"
uvicorn = {extras = ["standard"], version = "^0.15.0"}
requests = "^2.26.0"
[tool.poetry.dev-dependencies]
bandit = "^1.7.0"
black = "^21.6b0"
flake8 = "3.8.4"
pre-commit = "^2.13.0"
prospector = {extras = ["with-vulture"], version = "^1.3.1"}
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
mypy = "^0.910"
freezegun = "^1.1.0"
m2r2 = "^0.3.1"
Sphinx = "^4.1.2"
sphinx-rtd-theme = "^0.5.2"
ipdb = "^0.13.9"
bump2version = "^1.0.1"
[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme", "m2r2"]
[tool.poetry.scripts]
generate_cnab = "aurorae.cnab240.writer:generate_cnab_files"
generate_cnab_sample = "aurorae.cnab240.writer:generate_cnab_sample"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"