-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
43 lines (39 loc) · 1.17 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
""" Setup for the portal_client module. """
import os
from setuptools import setup
def read(fname):
"""
Utility function to read files. Used for the long_description.
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='portal-client',
description='Download client tool for IGS Portal servers.',
long_description=read('DESC'),
version='1.4.5',
py_modules=['portal_client'],
author='Victor F',
author_email='victor73@github.com',
license='MIT',
install_requires=[
'boto >= 2.49.0',
'google-auth-oauthlib >= 0.2.0',
'google-cloud-storage >= 1.13.2'
],
packages=[''],
package_dir={'': 'lib'},
scripts=[
'portal_client'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.6",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)