-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
84 lines (74 loc) · 2.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
[metadata]
name = dbsink
version = 2.9.3
description = Tools to sink kafka messages to a database table
author = Kyle Wilcox
author_email = [email protected]
url = https://github.com/axiom-data-science/dbsink
long_description_content_type = text/markdown
long_description = file: README.md
license = MIT
license_file = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering
[options]
zip_safe = True
install_requires =
click
easyavro >=3.0.0
geoalchemy2
msgpack-python
psycopg2
python-dateutil
pytz
shapely
simplejson
sqlalchemy
python_requires = >=3.7
packages = find:
[options.packages.find]
exclude = tests
[options.entry_points]
console_scripts =
dbsink = dbsink.listen:run
dbsink.maps =
JsonMap = dbsink.maps:JsonMap
StringMap = dbsink.maps:StringMap
GenericGeography = dbsink.tables:GenericGeography
GenericFloat = dbsink.tables:GenericFloat
AreteData = dbsink.tables:AreteData
NumurusData = dbsink.tables:NumurusData
NumurusStatus = dbsink.tables:NumurusStatus
NwicFloatReports = dbsink.tables:NwicFloatReports
NwicFloatReportsSofar = dbsink.tables:NwicFloatReportsSofar
GenericFieldStatistic = dbsink.tables:GenericFieldStatistic
[sdist]
formats = gztar
[check-manifest]
ignore =
*.avsc
.dockerignore
release.sh
Dockerfile
conda-recipe
conda-recipe/*
tests
tests/*
[tool:pytest]
markers =
integration: Integeration tests against an actual database
kafka: Integeration tests against an actual kafka broker
addopts = -m "not integration and not kafka" -s -rxs -v tests
flake8-max-line-length = 100
flake8-ignore =
*.py E265 E501 E221 E203 E201 E124 E202 E241 E251 E741 W293 W291 W504
filterwarnings =
ignore::DeprecationWarning