-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
46 lines (42 loc) · 1.12 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
[metadata]
name = lsst-alert-packet
version = 0.3.0
description = Code for interacting with Vera C. Rubin Observatory alert packets
url = https://github.com/lsst/alert_packet
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 =
fastavro
numpy
requests
lsst-resources
packages =
lsst.alert.packet
lsst.alert.packet.bin
package_dir =
=python
[options.package_data]
lsst.alert.packet =
schema
schema/*
schema/*/*
schema/*/*/*
schema/*/*/sample_data/*
[options.entry_points]
console_scripts =
validateAvroRoundTrip.py = lsst.alert.packet.bin.validateAvroRoundTrip:main
simulateAlerts.py = lsst.alert.packet.bin.simulateAlerts:main
syncAllSchemasToRegistry.py = lsst.alert.packet.bin.syncAllSchemasToRegistry:main
[flake8]
max-line-length = 110
max-doc-length = 79
ignore = E133, E226, E228, N802, N803, N806, N812, N813, N815, N816, W503
exclude =
__init__.py
doc/conf.py