forked from lsst/astro_metadata_translator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
47 lines (41 loc) · 1.11 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
[metadata]
name = astro_metadata_translator
description = A translator for astronomical metadata.
author = Tim Jenness
author_email = tjenness@lsst.org
license = BSD 3-Clause License
url = https://github.com/lsst/astro_metadata_translator
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Topic :: Scientific/Engineering :: Astronomy
[options]
zip_safe = True
package_dir=
=python
packages=find:
install_requires =
astropy >=3.0.5
pyyaml >=3.13
tests_require =
pytest >= 3.2
flake8 >= 3.7.5
pytest-flake8 >= 1.0.4
[options.packages.find]
where=python
[options.package_data]
astro_metadata_translator = corrections/*/*.yaml, corrections/*/*.md
[options.entry_points]
console_scripts =
translate_header.py = astro_metadata_translator.bin.translateheader:main
[flake8]
max-line-length = 110
max-doc-length = 79
ignore = E133, E226, E228, W503
exclude = __init__.py version.py
[tool:pytest]
addopts = --flake8
flake8-ignore = E133 E226 E228 W503