-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.55 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 = "dabapush"
version = "0.4.0-alpha8"
description = ""
authors = [
"Philipp Kessling <[email protected]>",
"Aditya Kumar <[email protected]>",
"Felix Victor Münch <[email protected]>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Leibniz-HBI/dabapush"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
]
[tool.poetry.dependencies]
python = "^3.12"
click = "*"
loguru = "*"
pandas = "*"
PyYAML = "*"
importlib-metadata = "*"
ujson = "*"
tqdm = "^4.67.1"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-cov = "*"
black = "*"
coverage = "*"
pdoc3 = "*"
pre-commit = "*"
isort = "*"
pylint = "*"
pytest-html = "*"
pydocstyle = "*"
mypy = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins.dabapush_readers]
"Twacapic" = "dabapush.Reader.TwacapicReader:TwacapicReaderConfiguration"
"NDJSON" = "dabapush.Reader.NDJSONReader:NDJSONReaderConfiguration"
"Tegracli" = "dabapush.Reader.tegracli_reader:TegracliReaderConfiguration"
[tool.poetry.plugins.dabapush_writers]
"CSV" = "dabapush.Writer.CSVWriter:CSVWriterConfiguration"
"NDJSON" = "dabapush.Writer.ndjson_writer:NDJSONWriterConfiguration"
"STDOUT" = "dabapush.Writer.stdout_writer:STDOUTWriterConfiguration"
[tool.poetry.scripts]
dabapush = 'dabapush.cli.main:cli'
[tool.pytest.ini_options]
addopts = "--cov-report html:tests/coverage --cov=dabapush --capture=sys"
[tool.pylint.messages_control]
disable=["invalid-name"]