-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (49 loc) · 1.59 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
44
45
46
47
48
49
50
51
52
#
# Copyright 2017 University of Southern California
# Distributed under the GNU GPL 3.0 license. See LICENSE for more info.
#
""" Installation script for the bdbag_gui utility.
"""
import io
import re
from setuptools import setup, find_packages
__version__ = re.search(
r'__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
io.open('bdbag_gui/__init__.py', encoding='utf_8_sig').read()
).group(1)
setup(
name="bdbag_gui",
description="Graphical User Interface for BDBag Utility",
url='https://github.com/fair-research/bdbag_gui/',
maintainer='USC Information Sciences Institute, Informatics Systems Research Division',
maintainer_email='[email protected]',
version=__version__,
packages=find_packages(),
package_data={'bdbag_gui': ['images/bag.ico', 'images/bag.icns', 'images/bag.png']},
entry_points={
'gui_scripts': [
'bdbag-gui = bdbag_gui.__main__:main',
]
},
requires=[
'os',
'sys',
'logging',
'PyQt5'],
install_requires=[
'bdbag[boto,globus]>=1.6.0',
'PyQt5'],
license='GNU GPL 3.0',
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)