-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.63 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
[project]
name = "dabapush"
version = "0.4.0-alpha10"
description = "A data base pusher"
authors = [
{"name"="Philipp Kessling", "email"="[email protected]"},
{"name"="Aditya Kumar", "email"="[email protected]"},
{"name"="Felix Victor Münch", "email"="[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",
]
requires-python = ">=3.12,<4.0"
dependencies= [
"click",
"loguru",
"pandas",
"PyYAML",
"ujson",
"tqdm"
]
[project.optional-dependencies]
dev = [
"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"
"JSON" = "dabapush.Reader.JSONReader:JSONReaderConfiguration"
"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"]