-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.cfg
93 lines (83 loc) · 1.98 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[metadata]
name = thor
version = file: thor/version.py
author = Joachim Moeyens, Mario Juric, Spencer Nelson
author_email = moeyensj@uw.edu
home_page = https://github.com/moeyensj/thor
description = Tracklet-less Heliocentric Orbit Recovery
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.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Astronomy
Topic :: Scientific/Engineering :: Physics
[options]
python_requires = >= 3.9
packages =
thor
include_package_data = True
setup_requires =
setuptools >= 66
wheel
setuptools_scm >= 6.0
install_requires =
adam-core @ git+https://github.com/B612-Asteroid-Institute/adam_core@c8f5aae352308ccd97c512c8d8e0a2e17c86ee18#egg=adam_core
astropy >= 5.3.1
astroquery
difi
healpy
jax
numpy
numba
pandas
psutil
pyarrow >= 14.0.0
pydantic < 2.0.0
pyyaml >= 5.1
quivr @ git+https://github.com/moeyensj/quivr@concatenate-empty-attributes
ray[default]
scikit-learn
scipy
spiceypy
[options.extras_require]
tests =
pytest
pytest-benchmark
pytest-memray
pytest-cov
pre-commit
dev =
ipython
memray
[options.package_data]
thor =
data/*.yaml
testing/data/*.csv
[aliases]
test=pytest
[tool:pytest]
python_functions = test_*
addopts = -m "not (integration or memory)"
markers =
integration: Mark a test as an integration test.
memory: Mark a test as a memory test.
[isort]
profile = black
skip =
__init__.py
[black]
line-length = 110
[flake8]
max_line_length = 110
ignore =
W503
E203