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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
"""
Stomper distutils file.
(c) Oisin Mulvihill
2007-07-26
"""
import sys
from setuptools import setup, find_packages
Name = 'stomper'
ProjectUrl = "https://github.com/oisinmulvihill/stomper"
Version = '0.4.3'
Author = 'Oisin Mulvihill'
AuthorEmail = 'oisin.mulvihilli@gmail.com'
Maintainer = 'Oisin Mulvihill'
Summary = (
'This is a transport neutral client implementation '
'of the STOMP protocol.'
)
License = 'http://www.apache.org/licenses/LICENSE-2.0'
ShortDescription = (
"This is a transport neutral client implementation of the "
"STOMP protocol."
)
Classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
]
# Recover the ReStructuredText docs:
Description = open("README.rst", "rb").read().decode("utf-8")
TestSuite = 'stomper.tests'
# stop any logger not found messages if tests are run.
#stomper.utils.log_init(logging.CRITICAL)
ProjectScripts = []
PackageData = {
}
needed = []
if sys.version_info < (2, 5):
needed += [
'uuid>=1.2',
]
setup(
name=Name,
version=Version,
author=Author,
author_email=AuthorEmail,
description=ShortDescription,
long_description=Description,
url=ProjectUrl,
license=License,
classifiers=Classifiers,
install_requires=needed,
test_suite=TestSuite,
scripts=ProjectScripts,
packages=find_packages('lib'),
package_data=PackageData,
package_dir={'': 'lib'},
)
|