-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.08 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
from distutils.core import setup
setup(
name='test-memphis-py',
packages=['memphis'],
version='0.0.6',
license='GPL',
description='A powerful message broker for developers',
readme="README.md",
author='Memphis.dev',
author_email='[email protected]',
url='https://github.com/shohamroditimemphis/test-memphis.py',
download_url='https://github.com/shohamroditimemphis/test-memphis.py/releases/tag/v0.0.6.tar.gz',
keywords=['message broker', 'devtool', 'streaming', 'data'],
install_requires=[
'asyncio',
'nats-py'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'License :: OSI Approved :: GNU General Public License (GPL)',
'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.12',
],
)