diff --git a/.gitignore b/.gitignore index ae9dec2..752296b 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ __pycache__ build/ dist/ ultrasync.egg-info/ +.eggs/ diff --git a/setup.py b/setup.py index ea28604..1ca07d0 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2019 Chris Caron +# Copyright (C) 2021 Chris Caron # All rights reserved. # # This code is licensed under the MIT License. @@ -46,13 +46,14 @@ setup( name='ultrasync', - version='0.9.2', - description='Wrapper to Hills/Interlogix UltraSync ComNav/ZeroWire Hub', + version='0.9.3', + description='Wrapper to XGen/Hills/Interlogix NX-595E/UltraSync ZeroWire', license='MIT', long_description=open('README.md').read(), long_description_content_type='text/markdown', url='https://github.com/caronc/ultrasync', - keywords='Hills ComNav Interlogix UltraSync ZeroWire Security Panel', + keywords='XGen Hills ComNav Interlogix UltraSync NX-595E ZeroWire ' + 'Security Panel', author='Chris Caron', author_email='lead2gold@gmail.com', packages=find_packages(), @@ -70,7 +71,7 @@ 'Topic :: Software Development :: Libraries :: Application Frameworks', ), entry_points={'console_scripts': console_scripts}, - python_requires='>=3.4', + python_requires='>=3.7', setup_requires=['pytest-runner'], tests_require=open('dev-requirements.txt').readlines(), ) diff --git a/ultrasync/__init__.py b/ultrasync/__init__.py index 0dd86aa..77b494c 100644 --- a/ultrasync/__init__.py +++ b/ultrasync/__init__.py @@ -24,10 +24,10 @@ # THE SOFTWARE. __title__ = 'ultrasync' -__version__ = '0.9.2' +__version__ = '0.9.3' __author__ = 'Chris Caron' __license__ = 'MIT' -__copywrite__ = 'Copyright (C) 2020 Chris Caron ' +__copywrite__ = 'Copyright (C) 2021 Chris Caron ' __email__ = 'lead2gold@gmail.com' __status__ = 'Production'