-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.py
38 lines (35 loc) · 1.19 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "stompest",
version = "1.1.2",
author = "Roger Hoover",
author_email = "[email protected]",
description = "STOMP client library for Python including both synchronous and Twisted implementations.",
license = 'Apache License 2.0',
packages = find_packages(),
long_description=read('README.txt'),
keywords = "stomp twisted activemq",
url = "https://github.com/mozes/stompest",
py_modules=["stompest"],
include_package_data = True,
zip_safe = False,
install_requires = [
'stomper',
'twisted',
],
tests_require = ['mock'],
test_suite = 'stompest.tests',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Twisted",
"Topic :: System :: Networking",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)