forked from aiidateam/kiwipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (54 loc) · 1.82 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
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
from setuptools import setup
__author__ = 'Martin Uhrin'
__license__ = 'GPLv3 and MIT'
__contributors__ = ['Sebastiaan P. Huber', 'Jason Yu', 'Sonia Collaud']
ABOUT = {}
with open('kiwipy/version.py') as f:
exec(f.read(), ABOUT) # pylint: disable=exec-used
setup(
name='kiwipy',
version=ABOUT['__version__'],
description='Robust, high-volume, message based communication made easy',
long_description=open('README.rst').read(),
url='https://github.com/aiidateam/kiwipy.git',
author='Martin Uhrin',
author_email='[email protected]',
license=__license__,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='communication messaging rpc broadcast',
install_requires=['shortuuid', 'async_generator', 'pytray>=0.2.2, <0.4.0', 'deprecation'],
python_requires='>=3.7',
extras_require={
'docs': [
'docutils==0.14',
'jupyter', # For running doc examples
'nbsphinx', # Jupyter notebooks in docs
'pandoc',
'sphinx',
'sphinx-autobuild',
],
'pre-commit': ['pre-commit~=2.2', 'pylint==2.5.2'],
'rmq': ['aio-pika', 'pyyaml~=5.1'],
'tests': [
'coverage',
'ipykernel',
'pytest-cov',
'pytest~=5.4',
'pytest-asyncio~=0.12,<0.17',
'pytest-notebook>=0.7',
'pytest-benchmark',
'pika',
'msgpack',
]
},
packages=['kiwipy', 'kiwipy.rmq'],
test_suite='test'
)