-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
60 lines (53 loc) · 1.75 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
60
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
:copyright: (c) 2023 by Saswata Nandi
:license: MIT, see LICENSE for more details.
"""
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.install import install
# imdlib version
VERSION = "0.1.20"
def readme():
"""print long description"""
with open('README.md') as f:
return f.read()
setup(
name="imdlib",
version="0.1.20",
author="Saswata Nandi",
author_email="[email protected]",
description="A tool for handling and downloading IMD gridded data",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/iamsaswata/",
license="MIT",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Hydrology",
],
python_requires='>=3.0',
keywords='imd, India, rainfall, data, hydrology, IMD, grid, grided, gridded',
# packages=['':'cct_nn'],
install_requires=['matplotlib',
'numpy',
'pandas',
'six',
'pandas',
'python-dateutil',
'pytz',
'urllib3',
'scipy',
'xarray',
'requests', ]
)