-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (56 loc) · 1.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
[tool.poetry]
name = "lasp-curryer"
version = "0.0.7"
packages = [
{ include = "curryer" }
]
description = "LASP SPICE extentions and geospatial data product generation tools."
authors = [
"Brandon Stone <[email protected]>"
]
readme = "README.md"
license = "MIT"
keywords = ["LASP", "SDP"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
[project.urls]
repository = "https://github.com/lasp/curryer"
[tool.poetry.dependencies]
python = ">=3.9,<4"
numpy = "^1.23"
scipy = ">=1.9"
pandas = ">=1.5"
xarray = ">=2022.11"
netcdf4 = ">=1.6"
pyhdf = ">=0.11"
rioxarray = ">=0.15"
rasterio = "=1.3.9"
pyproj = ">=3.6"
pyshp = ">=2.3"
requests = ">=2.28"
jinja2 = ">=3"
spiceypy = ">=6"
openpyxl = ">=3"
[tool.poetry.dev-dependencies]
pytest = ">=7.1"
pytest-cov = ">=3"
pylint = ">=2"
ipython = ">=8.4"
#[tool.poetry.scripts]
#curryer = 'curryer.__main__:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"