-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.18 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
from setuptools import setup, find_packages
setup(
name="aclimate_daily_data",
version='v0.0.5',
author="christianfeil",
author_email="[email protected]",
description="Daily data download module",
url="https://github.com/CIAT-DAPA/aclimate_resampling",
download_url="https://github.com/CIAT-DAPA/aclimate_resampling",
packages=find_packages('src'),
package_dir={'': 'src'},
keywords='daily data aclimate',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
entry_points={
'console_scripts': [
'aclimate_daily_data=aclimate_daily_data.aclimate_run:main',
],
},
install_requires=[
"annotated-types==0.5.0",
"certifi==2023.7.22",
"charset-normalizer==3.2.0",
"dnspython==2.4.2",
"idna==3.4",
"mypy-extensions==1.0.0",
"numpy==1.26.0",
"pydantic==2.3.0",
"pydantic_core==2.6.3",
"pymongo==4.5.0",
"python-dotenv==1.0.0",
"requests==2.31.0",
"tomli==2.0.1",
"typing_extensions==4.8.0",
"urllib3==2.0.4"
]
)