-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1.14 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
requirements = ['mpi4py', 'psutil', 'dill']
setup(
name='distribute2mpi',
version='0.3.0',
description="Multiprocessing for HPC system using MPI",
long_description="Expand the fonctionality of the multiprocessing module from multiple processes on a single machine to multiple processes on multiple machines.",
author="P.-O. Quirion",
author_email='[email protected]',
url='https://github.com/poquirion/distribute2mpi/',
py_modules = ['distribute2mpi'],
include_package_data=True,
install_requires=requirements,
license="MIT",
zip_safe=False,
keywords='',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
test_suite='tests',
)