-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.18 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
[project]
name = "pynasapower"
version = "0.0.1a1"
description = "Download meteorological data from NASA POWER API (https://power.larc.nasa.gov/)"
readme = {file = "README.md", content-type='text/markdown'}
license = {text = "GPL3"}
authors = [{name = "Alekos Falagas", email = "alek.falagas@gmail.com"},]
maintainers = [{name = "Alekos Falagas", email = "alek.falagas@gmail.com"}]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",]
requires-python = ">=3.9"
dependencies = [
"pandas",
"numpy",
"requests",
"geopandas",
"shapely",
"xarray",
"scipy",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinxcontrib-apidoc",
"sphinxcontrib-napoleon",
"sphinx_rtd_theme",
"myst_parser",
"sphinxemoji"
]
dev = [
"pytest",
"pytest-cov",
"pytest-dependency",
"pytest-mock",
]