-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (50 loc) · 1.92 KB
/
setup.py
File metadata and controls
57 lines (50 loc) · 1.92 KB
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
from setuptools import setup, find_packages
import os.path as p
with open(p.join(p.dirname(__file__), 'requirements.txt'), 'r') as reqs:
install_requires = [line.strip() for line in reqs]
setup(
name='sparkplug',
version='1.6.dev',
author='Owen Jacobson',
author_email='owen.jacobson@grimoire.ca',
url='http://alchemy.grimoire.ca/python/sites/sparkplug/',
download_url='http://alchemy.grimoire.ca/python/releases/sparkplug/',
description='An AMQP message consumer daemon',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing',
'Topic :: Utilities'
],
packages = find_packages(exclude=['*.test', '*.test.*']),
tests_require=[
'nose >= 0.10.4',
'mock >= 0.5.0'
],
install_requires=install_requires,
entry_points = {
'console_scripts': [
'sparkplug = sparkplug.cli:main'
],
'sparkplug.connectors': [
'connection = sparkplug.config.connection:AMQPConnector'
],
'sparkplug.configurers': [
'queue = sparkplug.config.queue:QueueConfigurer',
'exchange = sparkplug.config.exchange:ExchangeConfigurer',
'binding = sparkplug.config.binding:BindingConfigurer',
'consumer = sparkplug.config.consumer:ConsumerConfigurer',
],
'sparkplug.consumers': [
'echo = sparkplug.examples:EchoConsumer',
'broken = sparkplug.examples:Broken'
]
},
test_suite = 'nose.collector'
)