-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
59 lines (56 loc) · 1.48 KB
/
setup.py
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
from typing import List
import setuptools
development_requires: List[str] = [
"pytest>=8.2.1",
"mypy>=1.10.0",
"flake8>=7.0.0",
"pytest-cov>=5.0.0",
"Sphinx>=7.3.7",
"furo>=2024.5.6",
"isort>=5.13.2",
"twine>=5.1.0",
"sphinx-autobuild>=2024.4.16",
]
setuptools.setup(
name="rsclimatelab",
version="0.3.0",
author="Christian S. Perone",
author_email="christian.perone@gmail.com",
description="A project focused on climate data and tooling for "
"Rio Grande do Sul in Brazil.",
url="https://github.com/perone/rs-climate-lab",
install_requires=[
"rich>=13.7.0",
"dask[complete]>=2024.5.2",
"xarray>=2024.5.0",
"rioxarray>=0.15.5",
"click>=8.1.7",
"cdsapi>=0.7.0",
"pyyaml>=6.0.1",
"pydantic>=2.7.2",
"geopandas>=0.14.4",
"pyogrio>=0.5.1",
],
extras_require={
'dev': development_requires,
},
project_urls={
"Bug Tracker": "https://github.com/perone/rs-climate-lab/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
python_requires=">=3.10",
include_package_data=True,
package_data={
"rsclimatelab": ["assets/*"],
},
entry_points={
'console_scripts': [
'rscl = rsclimatelab.cli:cli',
]
}
)