-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
52 lines (41 loc) · 1.47 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
from distutils.core import setup
rel_file = lambda *args: os.path.join(os.path.dirname(os.path.abspath(__file__)), *args)
def read_from(filename):
fp = open(filename)
try:
return fp.read()
finally:
fp.close()
def get_long_description():
return read_from(rel_file('README.rst'))
def get_requirements():
data = read_from(rel_file('REQUIREMENTS'))
lines = map(lambda s: s.strip(), data.splitlines())
return filter(None, lines)
def get_version():
data = read_from(rel_file('hotqueue.py'))
return re.search(r"__version__ = '([^']+)'", data).group(1)
setup(
name = 'hotqueue',
author = 'Richard Henry',
author_email = '[email protected]',
description = 'HotQueue is a Python library that allows you to use Redis as a message queue within your Python programs.',
license = 'MIT',
long_description = get_long_description(),
install_requires = get_requirements(),
py_modules = ['hotqueue'],
url = 'http://github.com/richardhenry/hotqueue',
version = get_version(),
classifiers = [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)