-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (46 loc) · 994 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[metadata]
name = lsst-alert-database-server
version = 2.1.0
description = A server for the Rubin Observatory alert database
url = https://github.com/lsst-dm/alert_database_server
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]
python_requires = >= 3.8
install_requires =
fastapi
uvicorn
google-cloud-storage
requests
packages =
alertdb
alertdb.bin
[options.entry_points]
console_scripts =
alertdb = alertdb.bin.alertdb:main
[flake8]
max_line_length = 110
max_doc_length = 79
exclude =
bin
doc
**/*/__init__.py
**/*/version.py
tests/.tests
ignore =
E133
E226
E228
[mypy]
exclude = virtualenv*
[mypy-google.*]
ignore_missing_imports = True
[mypy-uvicorn.*]
ignore_missing_imports = True
[mypy-setuptools]
ignore_missing_imports = True