-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
71 lines (64 loc) · 1.56 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
68
69
70
71
[metadata]
name = cutouts
version = file: cutouts/version.py
author = B612 Asteroid Institute, Joachim Moeyens
author_email = [email protected]
home_page = https://github.com/B612-Asteroid-Institute/cutouts
description = Cutouts postage stamps for moving objects
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD 3-Clause License
license_files = LICENSE.md
keywords = astronomy, astrophysics, space, science, asteroids, comets, solar system
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
[options]
python_requires = >= 3.7
packages = find:
include_package_data = True
setup_requires =
setuptools >= 45
wheel
setuptools_scm >= 6.0
install_requires =
numpy
backoff
astropy
pandas
pyvo
matplotlib
imageio
pydantic
[options.extras_require]
tests =
pre-commit
pytest
pytest-cov
[options.entry_points]
console_scripts =
cutouts = cutouts.main:main
[options.package_data]
cutouts =
examples/*.csv
examples/*.jpg
[tool.black]
line-length = 110
[flake8]
max_line_length = 110
ignore =
W503
E203
exclude =
cutouts/version.py
[aliases]
test=pytest