-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (32 loc) · 783 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
# -*- coding:utf-8 -*-
from setuptools import find_packages, setup
version = '0.1.12'
setup(
name='torstomp',
version=version,
description='Simple Stomp 1.1 client for tornado applications',
long_description='',
classifiers=[],
keywords='stomp',
author='Wilson Júnior',
author_email='wilsonpjunior@gmail.com',
url='https://github.com/wpjunior/torstomp.git',
license='MIT',
include_package_data=True,
packages=find_packages(exclude=["tests", "tests.*"]),
platforms=['any'],
install_requires=[
'six',
'tornado',
],
extras_require={
'tests': [
'mock',
'nose',
'coverage',
"yanc",
"nose_focus",
"flake8",
]
}
)