Skip to content

Commit abe64e0

Browse files
author
Evan Briones
committedJan 26, 2015
Update caslib.py for pypi.
new file: AUTHORS new file: CHANGES new file: LICENSE new file: MANIFEST.in modified: setup.py
1 parent 2ea3c40 commit abe64e0

File tree

5 files changed

+22
-15
lines changed

5 files changed

+22
-15
lines changed
 

‎AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Steve "esteve" Gregory <contact@steve-gregory.com>

‎CHANGES

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.1.0 Initial pypi release.

‎LICENSE

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (c) 2010-2014, The Arizona Board of Regents on behalf of The University of Arizona
2+
3+
All rights reserved.
4+
5+
Developed by: iPlant Collaborative as a collaboration between participants at BIO5 at The University of Arizona (the primary hosting institution), Cold Spring Harbor Laboratory, The University of Texas at Austin, and individual contributors. Find out more at http://www.iplantcollaborative.org/.
6+
7+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
10+
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
11+
* Neither the name of the iPlant Collaborative, BIO5, The University of Arizona, Cold Spring Harbor Laboratory, The University of Texas at Austin, nor the names of other contributors may be used to endorse or promote products derived from this software without specific prior written permission.
12+
13+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

‎MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include AUTHORS CHANGES LICENSE README.md

‎setup.py

+6-15
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,12 @@
1-
#!/usr/bin/env python
2-
3-
from distutils.core import setup
4-
"""
5-
def get_requirements(file_name):
6-
f = open(file_name,'r')
7-
for line in f.read.split('\n'):
8-
if len(line) > 0 and "#" not in line[0]:
9-
pass
10-
"""
1+
from setuptools import setup, find_packages
112

12-
setup(name='caslib',
13-
version='2.0.0',
3+
setup(name='caslib.py',
4+
version='2.1.0',
145
description='CAS Client library',
15-
author='Steven Gregory',
16-
author_email='contact@steve-gregory.com',
6+
author='iPlant Collaborative',
7+
author_email='atmodevs@gmail.com',
178
url='https://github.com/iPlantCollaborativeOpenSource/caslib.py',
189
py_modules=['caslib'],
19-
#packages=setuptools.find_packages(),
10+
packages=find_packages(),
2011
install_requires = ['requests >= 2.2.1'],
2112
)

0 commit comments

Comments
 (0)
Please sign in to comment.