-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
92 lines (85 loc) · 2.42 KB
/
pyproject.toml
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
[build-system]
requires = ["packaging>=21",
"setuptools>=60",
"setuptools_scm>=8.0",
"pybind11>=2.10.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/kbmod/_version.py"
[project]
name = "kbmod"
authors = [{name="KBMOD Developers"}, ]
description = "Moving object detection library implemented on GPUs"
license = {file="LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
keywords = ["astronomy", "astrophysics", "image_processing", "gpu"]
classifiers = [
"Development Status :: 3 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: C++",
"Environment :: GPU",
"Environment :: GPU :: NVIDIA CUDA",
"Environment :: GPU :: NVIDIA CUDA :: 11",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Image Processing"
]
dynamic = ["version"]
dependencies = [
"astropy>=5.1",
"astroquery>=0.4.6",
"joblib>=1.4",
"matplotlib>=3.5",
"numpy<2.0",
"pandas>=1.5.1",
"reproject",
"scipy>=1.9.2",
"scikit_learn>=1.0.0",
"koffi>=0.1.1",
"jplephem",
"PyYAML>=6.0"
]
[project.urls]
Documentation = "https://epyc.astro.washington.edu/~kbmod/"
Repository = "https://github.com/dirac-institute/kbmod"
"Bug Tracker" = "https://github.com/dirac-institute/kbmod/issues"
Changelog = "https://epyc.astro.washington.edu/~kbmod/project_details/release_notes.html"
[project.optional-dependencies]
analysis = [
"tensorflow>=2.9",
"matplotlib>=3.6.1",
"ipywidgets>=8.0",
"ephem>=4.1"
]
docs = [
"sphinx",
# https://github.com/spatialaudio/nbsphinx/issues/655
"sphinx-gallery<0.11",
"sphinx-codeautolink",
"sphinx-design",
"numpydoc",
"pydata_sphinx_theme",
"nbsphinx",
# See https://pandoc.org/installing.html
# Also this works:
# conda install pandoc
# Neither of the following pypi packages actually installs the pandoc binary
# pandoc
# pypandoc-binary
"ipython"
]
tests = [
"black[jupyter]"
]
# formatting configuration as specified at developer.lsst.io
[tool.black]
line-length = 110
target-version = ["py38"]
extend-exclude = "data/|docs/|include/|lib/|setup.py"
[tool.isort]
profile = "black"
line_length = 110