-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "picaso"
version = "4.0.1"
description = "planetary intesity code for atmospheric scattering observations"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Natasha E. Batalha", email = "natasha.e.batalha@gmail.com"},
]
license = "GPL-3.0"
requires-python = ">=3.7"
dependencies = [
"bokeh>=2.3.0,<3.8.2",
"numpy>=2.0",
"numba",
"pandas",
"joblib",
"photutils",
"astropy",
"matplotlib",
"stsynphot",
"sphinx",
"scipy",
"h5py",
"virga-exo==2.0.2",
"xarray",
"pooch",
"tqdm",
"bibtexparser==1.4.4",
"netcdf4",
"h5netcdf",
"jupytext",
]
[tool.setuptools.packages.find]
include = ["picaso*"]
exclude = ["reference*"]
[project.urls]
Homepage = "https://natashabatalha.github.io/picaso"
Download = "https://github.com/natashabatalha/picaso"
[project.scripts]
picaso-notebooks = "picaso.integration_testing:main"