forked from pedrokiefer/aiostomp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 851 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
34
35
36
37
# -*- coding:utf-8 -*-
from setuptools import find_packages, setup
from aiostomp import __version__
setup(
name='aiostomp',
version=__version__,
description='Simple Stomp 1.1 client for asyncio applications',
long_description='',
classifiers=[],
keywords='stomp',
author='Pedro Kiefer',
author_email='pedro@kiefer.com.br',
url='https://github.com/pedrokiefer/aiostomp.git',
license='MIT',
include_package_data=True,
packages=find_packages(exclude=["tests", "tests.*"]),
platforms=['any'],
install_requires=[
'six',
'async-timeout',
'bumpversion'
],
extras_require={
'tests': [
'mock',
'nose',
'coverage',
'yanc',
'nose_focus',
'asynctest',
'flake8',
]
}
)