-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 734 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 734 Bytes
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
from setuptools import setup
setup(name='qsuite',
version='0.4.15',
description='A CLI to submit and retrieve large-scale jobs/results to and from HPC clusters.',
url='https://github.com/benmaier/qsuite',
author='Benjamin F. Maier',
author_email='benjaminfrankmaier@gmail.com',
license='MIT',
packages=['qsuite'],
include_package_data = True,
install_requires=[
'numpy>=1.17',
'paramiko>=2.7.2',
'pathos>=0.2.7',
'tabulate>=0.8.7',
],
dependency_links=[
],
entry_points = {
'console_scripts': [
'qsuite = qsuite.qsuite_binary:main',
],
},
zip_safe=False)