-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (28 loc) · 1012 Bytes
/
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'VERSION.txt')) as f:
VERSION = f.read().strip()
with open(os.path.join(here, 'requirements.txt')) as f:
REQUIREMENTS = [line for line in iter(f) if not line.startswith('--')]
with open(os.path.join(here, 'README.rst')) as f:
LONG_DESCRIPTION = f.read()
setup(
name='fast_queue',
version=VERSION,
description='Simple Task Producer',
long_description=LONG_DESCRIPTION,
author="Gustavo Maia Neto (Guto Maia)",
author_email="[email protected]",
license="MIT",
install_requires=REQUIREMENTS,
packages=find_packages(exclude=["*.tests", "*.tests.*", "examples"]),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
],
keywords='celery queue',
url='http://github.com/gutomaia/fast_queue/',
)