-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 920 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#from distutils.core import setup
from setuptools import setup
import os
setup(
name='batch4py',
version='0.2.4',
author='Landon T. Clipp',
author_email='[email protected]',
packages=['batch4py'],
description='Programmatic interface to batch schedulers.',
long_description='batch4py provides a Python intreface to many common \
batch schedulers. It rests on top of command-line executables like \
qsub and allows for users to define complex job chains.',
install_requires=[ 'pyyaml' ],
url = 'https://github.com/TerraFusion/batch4py',
download_url='https://github.com/TerraFusion/batch4py/archive/0.2.4.tar.gz',
keywords = ['batch', 'torque', 'pbs', 'pbs-torque', 'hpc', 'python', 'python3', 'cluster',
'scheduler', 'schedule' ],
package_data = {'batch4py': [ os.path.join( '.', 'batch4py', 'config.yml') ] },
include_package_data = True,
)