-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
38 lines (36 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
import pathlib
from setuptools import setup, find_packages
README = (pathlib.Path(__file__).parent / "README.md").read_text()
setup(
name='hsclient',
version='1.0.4',
packages=find_packages(include=['hsclient', 'hsclient.*'],
exclude=("tests",)),
install_requires=[
'hsmodels>=1.0.4',
'requests',
'requests_oauthlib',
],
extras_require={
"pandas": ["pandas"],
"xarray": ["netCDF4", "xarray"],
"rasterio": ["rasterio"],
"fiona": ["fiona"],
"all": ["pandas", "netCDF4", "xarray", "rasterio", "fiona"],
},
url='https://github.com/hydroshare/hsclient',
license='MIT',
author='Scott Black',
author_email='scott.black@usu.edu',
description='A python client for managing HydroShare resources',
python_requires='>=3.9',
long_description=README,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)