This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
48 lines (44 loc) · 1.51 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
import os
import sys
import codecs
from setuptools import setup
if sys.version_info < (3, 6, 0):
raise RuntimeError("Python 3.6 or higher required")
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
__version__ = ''
exec(open(os.path.join(here, 'distex', 'version.py')).read())
setup(
name='distex',
version=__version__,
description='Async distributed process pool using asyncio',
long_description=long_description,
url='https://github.com/erdewit/distex',
author='Ewald R. de Wit',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
],
keywords=(
'python asyncio parallel distributed computing process '
'pool task queue'),
packages=['distex'],
entry_points={
'console_scripts': [
'distex_proc=distex.processor:main'
]
},
install_requires=['dill', 'cloudpickle', 'eventkit'],
)