-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
21 lines (17 loc) · 846 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
readme = open('README.md').read()
history = open('HISTORY.md').read().replace('.. :changelog:', '')
requirements = open('requirements.txt').read().splitlines()
setuptools.setup(name='npshmex',
author='Jelle Aalbers',
version='0.2.1',
url='https://github.com/JelleAalbers/npshmex',
description=('ProcessPoolExecutor that passes numpy'
'arrays through shared memory'),
py_modules=['npshmex'],
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
install_requires=['SharedArray'],
setup_requires=['pytest-runner'],
tests_require=requirements + ['pytest'],
zip_safe=False)