-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
83 lines (69 loc) · 1.4 KB
/
setup.cfg
File metadata and controls
83 lines (69 loc) · 1.4 KB
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
[metadata]
name = lsst-alert-database-ingester
version = 2.0.0
description = An ingestion worker for the Rubin Observatory alert database
url = https://github.com/lsst-dm/alert_database_ingester
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Development Status :: 3 - Alpha
author = Spencer Nelson
author_email = swnelson@uw.edu
license = GPLv3
[options]
packages =
alertingest
alertingest.bin
python_requires = >= 3.11
install_requires =
aiokafka
avroc>=0.3.1
requests
kafkit[aiohttp]==0.1.1
boto3
tests_require =
pytest
kafka-python
lsst-alert-packet
[options.extras_require]
dev =
pre-commit
pytest
mypy>=1.8.0
black>=24.1.1
flake8
lsst-alert-packet
kafka-python
[options.entry_points]
console_scripts =
alertdb-ingester = alertingest.bin.alertdb_ingester:main
[flake8]
max_line_length = 110
max_doc_length = 79
exclude =
bin
doc
**/*/__init__.py
**/*/version.py
tests/.tests
ignore =
E133
E226
E228
W503
[isort]
profile = black
[mypy]
exclude = virtualenv*
[mypy-google.*]
ignore_missing_imports = True
[mypy-avroc.*]
ignore_missing_imports = True
[mypy-aiokafka]
ignore_missing_imports = True
[mypy-kafka.*]
ignore_missing_imports = True
[mypy-kafkit.*]
ignore_missing_imports = True
[mypy-lsst.*]
ignore_missing_imports = True