-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
119 lines (110 loc) · 2.33 KB
/
setup.cfg
File metadata and controls
119 lines (110 loc) · 2.33 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[metadata]
name = sdss-coordio
version = 1.18.2a1
author = Conor Sayres
author_email = csayres@uw.edu
description = Coordinate conversion for SDSS-V
url = https://github.com/sdss/coordio
project_urls =
Repository = https://github.com/sdss/coordio
Documentation = https://sdss-coordio.readthedocs.org
long_description = file: README.md
long_description_content_type = text/markdown
keywords = astronomy, software, coordinates
license = BSD 3-Clause License
license_files =
LICENSE.md
classifiers =
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Documentation :: Sphinx
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
python_requires = >=3.9
packages = find:
package_dir =
= src
setup_requires =
pybind11>=2.6.2,<3.0.0
install_requires =
sdsstools>=1.0.0; python_version>'3.7'
sdsstools<1.0.0; python_version<='3.7'
numpy<1.23.0; python_version<='3.7'
numpy>=1.23.0,<2; python_version>'3.7'
pandas>=1.2.1
matplotlib>=3.1.1
scipy>=1.2.1
pybind11>=2.6.2
scikit-image>=0.17.2
sep>=1.4.1
astropy<5.0.0; python_version<='3.7'
astropy>=5.0.0; python_version>'3.7'
seaborn>=0.12.1
pyarrow>=15.0.0; python_version>'3.7'
[options.packages.find]
where =
src
exclude =
*.tests
[options.package_data]
coordio =
etc/*
include/*
[options.extras_require]
dev =
flake8>=3.7.9
doc8>=0.8.0
pytest>=5.2.2
pytest-cov>=2.8.1
pytest-mock>=1.13.0
pytest-sugar>=0.9.2
isort>=4.3.21
coverage[toml]>=5.0
ipdb>=0.12.3
rstcheck>=3.3.1
twine>=3.4.2
wheel>=0.36.2
sphinx>=4.0
[isort]
line_length = 79
sections =
FUTURE
STDLIB
THIRDPARTY
SDSS
FIRSTPARTY
LOCALFOLDER
default_section = THIRDPARTY
known_first_party =
coordio
known_sdss =
sdsstools
balanced_wrapping = true
include_trailing_comma = false
lines_after_imports = 2
use_parentheses = true
[flake8]
ignore =
H101
N
W504
E203
W503
per-file-ignores =
*/__init__.py:W,F,E402
max-line-length = 99
[coverage:run]
branch = true
[coverage:report]
exclude_lines =
"def __repr__"
"raise NotImplementedError"
[tool:pytest]
addopts = --cov coordio --cov-report xml --cov-report html --cov-report term