-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (36 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
39
40
41
42
43
44
[tool.poetry]
name="eba-xbridge"
version="1.0.4"
authors=[
"Antonio Olleros <antonio.olleros@meaningfuldata.eu>",
"Jesús Simon <jesus.simon@meaningfuldata.eu>",
"Javier Hernandez <javier.hernandez@meaningfuldata.eu>"
]
description="XBRL-XML to XBRL-CSV converter for EBA Taxonomy (version 3.4)"
readme="README.rst"
packages = [{ include = "xbridge"}]
license='Apache 2.0'
keywords=['xbrl', 'eba', 'taxonomy', 'csv', 'xml']
repository='https://github.com/Meaningful-Data/xbridge'
[project.urls]
BugTracker='https://github.com/Meaningful-Data/xbridge/issues'
Documentation='https://docs.xbridge.meaningfuldata.eu'
SourceCode='https://github.com/Meaningful-Data/xbridge'
classifiers=[
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.1.4"
lxml = "^5.2.1"
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
pylint = "*"
sphinx = "*"
sphinx_rtd_theme = "*"
twine = "*"
toml = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"