forked from ESGF/esgf-pyclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.72 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
# BSD Licence
# Copyright (c) 2012, Science & Technology Facilities Council (STFC)
# All rights reserved.
#
# See the LICENSE file in the source distribution of this software for
# the full license text.
from setuptools import setup, find_packages
import sys
import os
# Import version from the top-level package
from pyesgf import __version__
from pyesgf import __doc__ as long_description
sys.path[:0] = os.path.dirname(__file__)
setup(name='esgf-pyclient',
version=__version__,
description="A library interacting with ESGF services within Python",
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Ag Stephens',
author_email='[email protected]',
url='http://esgf-pyclient.readthedocs.org',
download_url='https://github.com/ESGF/esgf-pyclient',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'test']),
include_package_data=True,
zip_safe=False,
install_requires=['jinja2', 'requests', 'requests_cache', 'six'],
extras_require={'testing':
['myproxyclient', 'pytest', 'nose', 'flake8']},
tests_require=['pytest', 'flake8'],
entry_points={},
test_suite='test')