-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
27 lines (25 loc) · 861 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
from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='async-worker',
version='0.2.0',
description="Microframework para escrever consumers para RabbitMQ",
long_description="Microframework para escrever consumers para RabbitMQ",
url='https://github.com/B2W-BIT/async-worker',
# Author details
author='Dalton Barreto',
author_email='[email protected]',
license='MIT',
classifiers=[
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires = [
"aioamqp==0.10.0",
"easyqueue==1.0.0",
"simple-json-logger==0.2.3",
],
entry_points={},
)