-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 915 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
# -*- coding: utf-8 -*-
"""setup.py: setuptools control."""
from setuptools import setup
try: # pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # pip <= 9.0.3
from pip.req import parse_requirements
setup(
name='qdrouter-jinja2',
version='0.1.10',
packages=['qdrouterjinja2'],
entry_points={
"console_scripts": ['qdrouterjinja2 = qdrouterjinja2.qdrouterjinja2:main']
},
license='Apache 2.0',
description='Generate qpid-dispatch config (qdrouter.conf) as Jinja2 template from already'
' installed qpid-dispatch.',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
install_requires=[
'argparse'
],
url='https://github.com/rh-messaging-qe/qdrouterd-jinja2',
author='Dominik Lenoch <[email protected]>, Jakub Stejskal <[email protected]>',
author_email='[email protected]'
)