forked from pyiron/pysqa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.93 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
"""
Setuptools based setup module
"""
from setuptools import setup, find_packages
import versioneer
setup(
name='pysqa',
version=versioneer.get_version(),
description='pysqa - simple queue adapter',
long_description='The goal of pysqa is to make submitting to an HPC cluster as easy as starting another subprocess. This is based on the assumption that even though modern queuing systems allow for an wide range of different configuration, most users submit the majority of their jobs with very similar parameters. Therefore pysqa allows the users to store their submission scripts as jinja2 templates for quick access. After the submission pysqa allows the users to track the progress of their jobs, delete them or enable reservations using the built-in functionality of the queuing system. The currently supported queuing systems are: LFS, MOAB, SGE, SLURM, TORQUE.',
url='https://github.com/pyiron/pysqa',
author='Jan Janssen',
author_email='[email protected]',
license='BSD',
classifiers=['Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
],
keywords='pysqa',
packages=find_packages(exclude=["*tests*"]),
install_requires=['defusedxml==0.7.1',
'jinja2==3.1.2',
'pandas==2.0.0',
'paramiko==3.1.0',
'pyyaml==6.0',
'tqdm==4.65.0'],
cmdclass=versioneer.get_cmdclass(),
)