-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
37 lines (34 loc) · 954 Bytes
/
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
[tool.poetry]
name = "os2mo_data_import"
version = "0.0.0" # versioning handled by conventional commits
description = "A set of tools for OS2MO data import and export"
authors = ["Magenta <[email protected]>"]
license = "MPL-2.0"
readme = "README.rst"
repository = "https://git.magenta.dk/rammearkitektur/os2mo-data-import-and-export"
keywords = ["os2mo", "dipex"]
packages = [
{ include = "os2mo_data_import" },
{ include = "os2mo_helpers" },
{ include = "mox_helpers" },
{ include = "kle" },
]
[tool.poetry.dependencies]
python = "3.11.*"
aiohttp = "^3.8.1"
anytree = "^2.8.0"
certifi = ">=2021.10.8,<2023.0.0"
chardet = "^4.0.0"
click = "^8.0.4"
idna = "^3.3"
openpyxl = "^3.0.9"
requests = "^2.27.1"
XlsxWriter = "^3.0.3"
xmltodict = "^0.12.0"
more-itertools = "^8.12.0"
[tool.poetry.dev-dependencies]
freezegun = "^1.2.0"
black = "^22.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"