-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.58 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
[build-system]
requires = [
"pandas==2.0.1",
"xarray>=2022.12.0",
"numpy==1.24.3",
"requests~=2.31.0",
"setuptools==67.8.0",
"tqdm>=4.62.3",
"tables==3.10.2",
"openpyxl==3.1.5",
"pyarrow==19.0.1",
"fastparquet==2024.11.0",
"jupyter==1.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "xcodex"
version = "1.2.1"
authors = [
{name="Henrique Fontellas Laurito", email="henrique.f.laurito@unesp.br" }
]
description = """This package will download and extract daily data of XCO2 from the NASA Goddard Earth Sciences (GES)
Data and Information Services Center (DISC)"
Source citation: Brad Weir, Lesley Ott and OCO-2 Science Team (2022), OCO-2 GEOS Level 3 daily,
0.5x0.625 assimilated CO2 V10r, Greenbelt, MD, USA, Goddard Earth Sciences Data
and Information Services Center (GES DISC), Accessed: 10/31/2022,
doi: 10.5067/Y9M4NM9MPCGH"""
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"]
[project.urls]
"Homepage" = "https://github.com/henriquefl24/xcodex"
"Bug Tracker" = "https://github.com/henriquefl24/xcodex/issues"