forked from ramanakumars/JunoCamProjection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.03 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 >= 74.1", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["junocam_projection"]
exclude = []
namespaces = false
[project]
name = "junocam_projection"
version = "0.9"
license = { file = 'LICENSE' }
description = 'projection pipeline for JunoCam images'
requires-python = ">=3.10"
dependencies = [
'beautifulsoup4>=4.13.3',
'Cartopy>=0.23.0',
'matplotlib>=3.10.1',
'netCDF4>=1.7.2',
'numpy>=2.2.4',
'numba>=0.61.2',
'pyproj>=3.6.1',
'rasterio>=1.3.10',
'Requests>=2.32.3',
'scikit_learn>=1.6.1',
'scipy>=1.15.2',
'scikit_image>=0.25.2',
'spiceypy>=6.0.0',
'tqdm>=4.66.5',
]
keywords = ["junocam", "planetary-imaging", "mapping"]
authors = [
{ name = 'Ramanakumar Sankar', email = 'ramanakumar.shankar@gmail.com' },
]
readme = "README.md"
[project.urls]
repository = "https://www.github.com/ramanakumars/JunoCamProjection"
[tool.ruff.format]
quote-style = "preserve"
skip-magic-trailing-comma = true
[tool.ruff.lint]
ignore = ["E501"]