-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 917 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 917 Bytes
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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
long_description = 'A command line tool for interacting with RSMQ queues and messages.'
setup(
name ='rsmqctl',
version ='1.0.0',
author ='Keith Sharp',
author_email ='kms@passback.co.uk',
url ='https://github.com/keithsharp/rsmqctl',
description ='RSMQ Command line tool.',
long_description = long_description,
long_description_content_type ="text/markdown",
license ='AGPL',
packages = find_packages(),
entry_points ={
'console_scripts': [
'rsmqctl = rsmqctl.rsmqctl:cli'
]
},
classifiers =[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
],
keywords ='redis rsmq message queue',
install_requires = requirements,
zip_safe = False
)