-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 767 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (23 loc) · 767 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
import setuptools
# How do we keep this in sync with requirements.pip?
#
REQUIREMENTS = [
"kombu==2.3.2",
"nose==1.3.0",
"requests>=0.14",
"statsd>=2.1.2",
]
if __name__ == "__main__":
setuptools.setup(
name="queue_util",
version="0.0.6",
author="Sujay Mansingh",
author_email="sujay.mansingh@gmail.com",
packages=setuptools.find_packages(),
scripts=[],
url="https://github.com/sujaymansingh/queue_util",
license="LICENSE.txt",
description="A set of utilities for consuming (and producing) from a rabbitmq queue",
long_description="View the github page (https://github.com/sujaymansingh/queue_util) for more details.",
install_requires=REQUIREMENTS
)