-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 715 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='pythonGroupMsg',
version='0.0.8',
description='This is a packet that broadcasts redis multiple queues',
url='https://github.com/zhenruyan/pythonGroupMsg',
author='zhenruyan',
author_email='baiyangwangzhan@hotmail.com',
license='WTFPL',
packages=find_packages(),
zip_safe=False,
platforms=["linux"],
long_description=open('README.rst').read(),
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries'
],include_package_data=True,
)