forked from TerraFusion/globuslite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (20 loc) · 870 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
import os
setup(
name='globuslite',
version='0.2.4',
author='Landon T. Clipp',
author_email='[email protected]',
packages=['globuslite', 'globuslite.commands'],
description='A lightweight interface to the Globus SDK.',
long_description='globuslite provides a lightweight interface \
to the Globus data transfer services. Normally, users must manually \
implement the Globus API authentication flow, however this \
package abstracts that away from users and manages authorization \
tokens automatically. It also provides a simple way to submit transfer \
tasks to Globus.',
install_requires=[ 'configobj', 'pyyaml'],
url='https://github.com/TerraFusion/globuslite',
keywords = ['globus', 'sdk', 'api', 'data', 'transfer', 'lite',
'lightweight', 'light', 'globuslite'],
)