-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
67 lines (61 loc) · 2.02 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
[metadata]
name = exposurelog
description = Observatory Wide Logbook.
author = University of Washington
author_email = sqre-admin@lists.lsst.org
long_description = file: README.rst, CHANGELOG.rst, LICENSE
long_description_content_type = text/x-rst
url = https://github.com/lsst-sqre/exposurelog
project_urls =
Change log = https://github.com/lsst-sqre/exposurelog/main/blob/CHANGELOG.rst
Source code = https://github.com/lsst-sqre/exposurelog
Issue tracker = https://github.com/lsst-sqre/exposurelog/issues
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Natural Language :: English
Operating System :: POSIX
keywords =
lsst
[options]
zip_safe = False
include_package_data = True
package_dir =
= src
packages=find:
python_requires = >=3.10
setup_requires =
setuptools_scm
# Use requirements/main.in for runtime dependencies instead of install_requires
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
exposurelog = exposurelog.cli:main
[tool:pytest]
# Ignore ndarray size changed warnings (also hide dtype and ufunc warnings because they are common,
# based on https://github.com/numpy/numpy/pull/432).
# I borrowed the technique from astropy:
# https://github.com/astropy/astropy/blob/aed5138bc5d22a89caa956bcdff641673b43dede/setup.cfg#L115-L141
filterwarnings =
ignore:numpy.dtype size changed:RuntimeWarning
ignore:numpy.ndarray size changed:RuntimeWarning
ignore:numpy.ufunc size changed:RuntimeWarning
[flake8]
# match black
max-line-length = 88
# E203: whitespace before :, flake8 disagrees with PEP-8
# W503: line break after binary operator, flake8 disagrees with PEP-8
ignore = E203, W503
[mypy]
disallow_untyped_defs = True
disallow_incomplete_defs = True
ignore_missing_imports = True
show_error_codes = True
strict_equality = True
warn_redundant_casts = True
warn_unreachable = True
warn_unused_ignores = True