-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (67 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
69 lines (67 loc) · 1.65 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vip_hci"
version = "2.0.1"
description = "Package for astronomical high-contrast image processing."
readme = "README.rst"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Carlos Alberto Gomez Gonzalez" },
{ name = "Valentin Christiaens", email = "valentin.christiaens@uliege.be" },
]
requires-python = ">=3.11"
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Astronomy",
]
urls.Homepage = "https://github.com/vortex-exoplanet/VIP"
dependencies = [
"astropy>=5.0.0",
"corner>=2.2.1",
"dataclass_builder>=1.2.0",
"emcee>=3.1.0",
"hciplot>=0.2.4",
"matplotlib>=3.7.0",
"nestle>=0.2.0",
"numpy>=1.21.2",
"pandas>=1.3.3",
"photutils>=1.2.0",
"psutil>=5.9.0",
"tqdm>=4.67.1",
"scipy>=1.7.2",
"scikit-image>=0.19.0",
"scikit-learn>=1.0.2",
]
[dependency-groups]
dev = [
"coverage>=7.10.0",
"build",
"twine",
"opencv-python",
"sphinx",
"myst-nb",
"myst-parser",
"pandoc",
"pytest",
"pytest-split",
"flake8",
"flake8-bandit",
"flake8-docstrings",
"autopep8",
"ratelimit",
"pre-commit",
"nbsphinx",
"sphinx_rtd_theme",
"jupyter_sphinx",
]