-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (27 loc) · 1.11 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
from setuptools import setup
setup(name='pysbatch',
version='0.1.6',
description='Submit slurm job in python',
url='https://github.com/luptior/pysbatch',
author='Gan Xu',
author_email='luptior@gmail.com',
license='MIT',
packages=['pysbatch'],
zip_safe=False,
classifiers=[
# How mature is this project?
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',],
keywords='slurm batch job submit',
python_requires='>=3.5'
)