forked from globus/transfer-api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1.24 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
from distutils.core import setup
setup(name="globusonline-transfer-api-client",
version="0.10.13",
description="Globus Online Transfer API client library",
long_description=open("README.rst").read(),
author="Bryce Allen",
author_email="[email protected]",
url="https://github.com/globusonline/transfer-api-client-python",
packages=["globusonline", "globusonline.transfer",
"globusonline.transfer.api_client",
"globusonline.transfer.api_client.x509_proxy"],
package_data={ "globusonline.transfer.api_client": ["ca/*.pem",
"examples/*.py"] },
keywords=["globusonline"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Communications :: File Sharing",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)