-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
22 lines (21 loc) · 845 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
from setuptools import setup, find_packages
from stompy import distmeta
setup(name='stompy',
version=distmeta.__version__,
description=distmeta.__doc__,
long_description=distmeta.__long_description__,
author=distmeta.__author__,
author_email=distmeta.__contact__,
packages = ['stompy'],
license='BSD',
url=distmeta.__homepage__,
keywords='stomp activemq jms messaging',
test_suite="nose.collector",
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
],
)