-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 1.77 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools-scm", "wheel"]
[dependency-groups]
dev = [
{include-group = "test"},
"ruff>=0.15.6",
"matplotlib",
"pre-commit>=4.5.1"
]
docs = [
"alpyca>=3.1.2",
"ghp-import>=2.1.0",
"ipython>=9.10.0",
"ipywidgets>=8.1.8",
"matplotlib>=3.10.8",
"myst-nb>=1.4.0",
"notebook>=7.5.5",
"sphinx>=9.0.4",
"sphinx-book-theme>=1.2.0",
"sphinx-copybutton>=0.5.2",
"sphinx-design>=0.7.0"
]
test = [
"cabaret>=0.4.5",
"pytest>=9.0.3"
]
[project]
authors = [
{email = "ddegen@ethz.ch", name = "David Degen"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
]
dependencies = [
"astropy",
"opencv-python",
"numpy",
"pandas",
"photutils",
"scipy",
"sqlite3worker",
"statsmodels",
"tqdm>=4.67.3"
]
description = "A package that provides flexible autofocus procedures for telescopes."
keywords = ["telescope", "autofocus"]
license = {text = "MIT"}
name = "astrafocus"
readme = "README.md"
requires-python = ">=3.11"
version = '0.1.4'
[project.optional-dependencies]
alpaca = ["alpyca"]
extended = ["scikit-learn"]
visualization = ["ipython", "matplotlib", "notebook"]
[project.urls]
"Bug Tracker" = "https://github.com/dgegen/astrafocus/issues"
"Homepage" = "https://github.com/dgegen/astrafocus"
"Source" = "https://github.com/dgegen/astrafocus"
[tool.pytest.ini_options]
addopts = "--doctest-modules"
testpaths = ["tests", "src/astrafocus/focus_measure_scan.py"]
[tool.ruff]
exclude = ["*.yaml"]
extend-include = ["*.ipynb"]
line-length = 109
[tool.ruff.lint]
fixable = ["ALL"]
select = ["E", "F", "I001", "UP"]
[tool.setuptools.packages.find]
where = ["src"]