forked from npryce/python-parallelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (22 loc) · 768 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
26
27
28
#!/usr/bin/env python
import os
from distutils.core import setup
setup(name='python-parallelize',
version='1.0.0.2',
description='Make the for loop run in parallel',
author='IncubatorShokuhou',
author_email='lh@lasg.iap.ac.cn',
url='https://github.com/IncubatorShokuhou/python-parallelize',
license="Apache 2.0",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Natural Language :: English',
'Topic :: Software Development',
],
provides=['parallelize'],
py_modules=['parallelize']
)