-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.cfg
30 lines (28 loc) · 877 Bytes
/
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
[metadata]
name = lsst-alert-stream
version = 0.3.0
description = Code for interacting with the Vera C. Rubin Observatory alert stream
url = https://github.com/lsst-dm/alert_stream
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Development Status :: 3 - Alpha
author = Spencer Nelson
author_email = [email protected]
license = GPLv3
[options]
install_requires =
confluent_kafka
fastavro
lsst-alert-packet
packages =
lsst.alert.stream
lsst.alert.stream.bin
package_dir =
=python
[options.entry_points]
console_scripts =
filterStream.py = lsst.alert.stream.bin.filterStream:main
monitorStream.py = lsst.alert.stream.bin.monitorStream:main
printStream.py = lsst.alert.stream.bin.printStream:main
sendAlertStream.py = lsst.alert.stream.bin.sendAlertStream:main