forked from pgiri/dispy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.46 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
40
41
42
43
44
import sys
import os
from setuptools import setup
if sys.version_info.major == 3:
base_dir = 'py3'
else:
assert sys.version_info.major == 2
assert sys.version_info.minor >= 7
base_dir = 'py2'
setup(
name='dispy',
version='4.3',
description='Distributed and Parallel Computing Framework with/for Python.',
long_description=open('README.rst').read(),
keywords='distributed computing, parallel processing, mapreduce, hadoop, job scheduler',
url='http://dispy.sourceforge.net',
author='Giridhar Pemmasani',
author_email='[email protected]',
package_dir={'':base_dir},
packages=['dispy'],
package_data = {
'dispy' : ['data/*', 'examples/*'],
},
install_requires=['asyncoro >= 3.1'],
scripts=[os.path.join(base_dir, script) for script in \
['dispy.py', 'dispynode.py', 'dispynetrelay.py', 'dispyscheduler.py']],
license='MIT',
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
]
)