forked from pygridtools/pythongrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (20 loc) · 782 Bytes
/
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
# installation scripts based on these:
# http://www.scotttorborg.com/python-packaging/minimal.html
# http://packages.python.org/distribute/setuptools.html
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='pythongrid',
version='0.2',
description='High-level python wapper for the Sun Grid Engine (SGE) using DRMAA and ZMQ',
long_description=readme(),
keywords='drmaa sge cluster distributed parallel',
url='http://code.google.com/p/pythongrid/',
author='Chris Widmer',
author_email='[email protected]',
license='GPL',
packages=['pythongrid'],
#py_modules=['pythongrid', 'pythongrid_cfg'],
install_requires=['drmaa', 'pyzmq'],
zip_safe=False)