Skip to content

Commit 870fb3d

Browse files
committed
v0.2.3
1 parent 54a7054 commit 870fb3d

File tree

4 files changed

+25
-12
lines changed

4 files changed

+25
-12
lines changed

setup.py

+13-10
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,24 @@
22
from os.path import join, dirname
33
from setuptools import setup
44

5-
with open(join(dirname(__file__), 'README.md'), 'r') as fh:
5+
here = dirname(__file__)
6+
about = {}
7+
with open(join(here, 'spectrum_client', '__version__.py'), 'r') as fh:
8+
exec(fh.read(), about)
9+
10+
with open(join(here, 'README.md'), 'r') as fh:
611
README = fh.read().strip()
712

813
setup(
9-
name='spectrum-client',
10-
version='0.2.2',
11-
description='CA Spectrum Web Services API wrapper',
14+
name=about['__title__'],
15+
version=about['__version__'],
16+
description=about['__description__'],
1217
long_description=README,
1318
long_description_content_type='text/markdown',
14-
author='Renato Orgito',
15-
author_email='[email protected]',
16-
maintainer='Renato Orgito',
17-
maintainer_email='[email protected]',
18-
url='https://github.com/orgito/spectrum-client',
19-
license='MIT',
19+
author=about['__author__'],
20+
author_email=about['__author_email__'],
21+
url=about['__url__'],
22+
license=about['__license__'],
2023
classifiers=[
2124
'Development Status :: 4 - Beta',
2225
'Intended Audience :: Developers',

spectrum_client/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
from .spectrum import Spectrum, SpectrumClientException, SpectrumClientAuthException, SpectrumClientParameterError
2+
3+
from .__version__ import __title__, __description__, __url__, __version__, __author__, __author_email__
4+
from .__version__ import __license__, __copyright__

spectrum_client/__version__.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
__title__ = 'spectrum-client'
2+
__description__ = 'CA Spectrum Web Services API wrapper.'
3+
__url__ = 'https://github.com/orgito/spectrum-client'
4+
__version__ = '0.2.3'
5+
__author__ = 'Renato Orgito'
6+
__author_email__ = '[email protected]'
7+
__license__ = 'MIT'
8+
__copyright__ = 'Copyright 2018 Renato Orgito'

spectrum_client/spectrum.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,7 @@ def devices_by_filters(self, filters, landscape=None):
142142
<attribute id="{attr_id}">
143143
<value>{value}</value>
144144
</attribute>
145-
</{operation}>'''.format(**f) for f in filters
146-
]
145+
</{operation}>'''.format(**f) for f in filters]
147146
filters = '\n'.join(filters)
148147
if landscape:
149148
landscape_filter = self.xml_landscape_filter(landscape)

0 commit comments

Comments
 (0)