-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 958 Bytes
/
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
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "esgfpy-publish",
version = "0.9",
author = "Luca Cinquini",
author_email = "[email protected]",
description = ("Python client-side package for publishing data to the Earth System Grid Federation (ESGF)"),
license = "ASF",
keywords = "python publishing client ESGF earth system grid federation",
url = "https://github.com/EarthSystemCoG/esgfpy-publish",
packages=find_packages(),
install_requires=['python-dateutil', 'pil', 'h5py', 'netCDF4', 'solrpy'],
long_description=read('README'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2 :: Only",
],
)