forked from zacharyvoase/zenqueue
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
23 lines (19 loc) · 547 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (19 loc) · 547 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
fromez_setupimportuse_setuptools
exceptImportError:
pass
else:
use_setuptools()
fromsetuptoolsimportsetup, find_packages
setup(
name='ZenQueue',
version='0.5.2',
description='An incredibly simple (but fast) network message queueing system, written in Python.',
author='Zachary Voase',
author_email='disturbyte@gmail.com',
url='http://github.com/disturbyte/zenqueue',
packages=find_packages(),
install_requires=['simplejson', 'URLObject'],
)