-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
140 lines (124 loc) · 3.13 KB
/
setup.cfg
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[metadata]
name = target-s3-jsonl
version = attr: target_s3_json.__version__
description = Singer.io target for writing JSON Line files and upload to S3
long_description = file: README.md
long_description_content_type = text/markdown
author = Eddy ∆
author_email = edrdelta@gmail.com
url = https://github.com/ome9ax/target-s3-jsonl
keywords = target-core, target-s3-jsonl, target-s3-json, singer, singer.io, tap, target, etl, json, jsonl, aws, s3
license = Apache License 2.0
classifiers =
Development Status :: 5 - Production/Stable
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
project_urls =
# Documentation = https://ome9ax.github.io/target-s3-jsonl
Releases = https://github.com/ome9ax/target-s3-jsonl/releases
Changelog = https://github.com/ome9ax/target-s3-jsonl/blob/main/CHANGELOG.md
Issue Tracker = https://github.com/ome9ax/target-s3-jsonl/issues
[options]
package_dir =
= src
packages = find:
py_modules = target_s3_json
python_requires = >=3.9
# install_requires =
# target-core==0.0.7
# boto3==1.24.91
include_package_data = True
platforms = any
[options.package_data]
target_s3_json = logging.conf
[options.packages.find]
where = src
exclude =
tests
[options.entry_points]
console_scripts =
target-s3-json = target_s3_json:main
target-s3-jsonl = target_s3_json:main
[options.extras_require]
test =
pytest-asyncio
pytest-cov
moto[s3]
# moto[s3,sts]
lint = flake8
static = mypy
dist =
setuptools
wheel
build
deploy = twine
doc = sphinx-rtd-theme
[tool:pytest]
addopts = -v --cov=target_s3_json --cov-fail-under 95 --cov-report xml --cov-report term --cov-report html:htmlcov --doctest-modules
testpaths = tests
asyncio_mode = auto
[coverage:run]
branch = True
omit =
./setup.py
tests/.*
docs/conf.py
venv/*
[coverage:report]
show_missing = True
skip_covered = False
exclude_lines =
if __name__ == .__main__.:
[flake8]
count = True
show-source = True
statistics = True
extend-exclude = venv
ignore = C901
max-line-length = 160
max-complexity = 10
[build_sphinx]
builder = html
warning-is-error = true
# keep-going = true
project = 'Target S3 Jsonl'
version = attr: target_s3_json.__version__
release = attr: target_s3_json.__version__
source-dir = 'docs'
[tox:tox]
passenv = TOXENV TOX_* CI_* GITLAB_*
# requires = tox-pipenv
envlist = py{39,310}
# labels =
# test = py{39,310,pi}
# static = flake8, mypy
# envlist = .virtualenvs/target-s3-jsonl
isolated_build = True
# skipsdist = True
# parallel_show_output=True
# requires = tox-pip-extensions
# tox_pip_extensions_ext_venv_update = true
[testenv]
usedevelop = True
extras = test
commands = pytest {posargs}
[testenv:lint]
usedevelop = True
skip_install = true
deps=flake8
commands=flake8 {posargs}
[testenv:static]
usedevelop = True
skip_install = true
deps = mypy
commands = mypy {posargs}
# [build-system]
# requires = [
# "setuptools>=42",
# "wheel"
# ]
# build-backend = "setuptools.build_meta"