-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (53 loc) · 1.76 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/env python
from setuptools import setup
import scoop
import sys
# Backports installation
extraPackages = []
if sys.version_info < (2, 7):
extraPackages = ['scoop.backports']
setup(name='scoop',
version="{ver} {rev}".format(
ver=scoop.__version__,
rev=scoop.__revision__,
),
description='Scalable COncurrent Operations in Python',
long_description=open('README.txt').read(),
author='SCOOP Development Team',
author_email='[email protected]',
url='http://scoop.googlecode.com',
download_url='http://code.google.com/p/scoop/downloads/list',
install_requires=['greenlet>=0.3.4',
'pyzmq>=13.1.0',
'argparse>=1.1',
],
extras_require = {'nice': ['psutil>=0.6.1'],
},
packages=['scoop',
'scoop.bootstrap',
'scoop.launch',
'scoop.broker',
'scoop._comm',
'scoop.discovery',
] + extraPackages,
platforms=['any'],
keywords=['distributed algorithms',
'parallel programming',
'Concurrency',
'Cluster programming',
'greenlet',
'zmq',
],
license='LGPL',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Library or Lesser General Public '
'License (LGPL)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
],
)