-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 901 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
# Copyright (c) 2021 Christopher Taylor
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
from setuptools import setup
setup(name='pyzmqcollectives',
version='0.1',
description='SPMD collective communication algorithms using PyZMQ',
url='https://github.com/ct-clmsn/pyzmq-collectives',
author='Christopher Taylor',
author_email='ct.clmsn@gmail.com',
license='Boost',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Boost License",
"Operating System :: OS Independent",
"Topic :: System :: Distributed Computing",
"Topic :: Scientific/Engineering",
],
packages=['pyzmqcollectives'],
install_requires=[
'zmq',
],
zip_safe=False)