-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
43 lines (39 loc) · 1.39 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
# 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, os
# Import version from the top-level package
sys.path[:0] = os.path.dirname(__file__)
from pyesgf import __version__
from pyesgf import __doc__ as long_description
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',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Stephen Pascoe',
author_email='[email protected]',
url='http://esgf-pyclient.readthedocs.org',
download_url='http://github.org/stephenpascoe/esgf-pyclient',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'test']),
include_package_data=True,
zip_safe=False,
install_requires=[
'jinja2',
],
#tests_require=['NoseXUnit'],
entry_points= {
},
test_suite='nose.collector',
)