Skip to content

Commit 4dd8bd7

Browse files
committed
Add Rob Kooper has author within setup.py.
1 parent 66ee26f commit 4dd8bd7

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

pyclowder/datasets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,13 +242,13 @@ class DatasetsApi(object):
242242
API to manage the REST CRUD endpoints for datasets.
243243
"""
244244

245-
def __init__(self, client=None, host=None, key=None,
245+
def __init__(self, client=None, host=None, key=None,
246246
username=None, password=None):
247247
"""Set client if provided otherwise create new one"""
248248
if client:
249249
self.client = client
250250
else:
251-
self.client = ClowderClient(host=host, key=key,
251+
self.client = ClowderClient(host=host, key=key,
252252
username=username, password=password)
253253

254254
def datasets_get(self):

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
from setuptools import setup, find_packages
22

33
def description():
4+
45
with open('description.rst') as f:
5-
return f.read()
6+
return f.read()
67

78

89
setup(name='pyclowder',
910
version='2.0.0',
1011
packages=find_packages(),
1112
description='TERRA-REF utility library',
1213
long_description=description(),
13-
#author='Max Burnette',
14-
#author_email='mburnet2@illinois.edu',
14+
author='Rob Kooper',
15+
author_email='kooper@illinois.edu',
1516

1617
url='clowder.ncsa.illinois.edu',
1718
project_urls = {

0 commit comments

Comments
 (0)