-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
25 lines (22 loc) · 910 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
24
25
# coding: utf-8
from distutils.core import setup
setup(name='pypelinin',
version='0.1.1',
author=u'Álvaro Justen',
author_email='[email protected]',
url='https://github.com/turicas/pypelinin/',
description='Easily distribute jobs and pipelines among a cluster',
packages=['pypelinin'],
install_requires=['pyzmq', 'psutil'],
license='LGPL',
keywords=['jobs', 'tasks', 'distributed', 'pipelines', 'cluster'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
],
)