-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ __pycache__ | |
build/ | ||
dist/ | ||
ultrasync.egg-info/ | ||
.eggs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright (C) 2019 Chris Caron <[email protected]> | ||
# Copyright (C) 2021 Chris Caron <[email protected]> | ||
# 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='[email protected]', | ||
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(), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]>' | ||
__copywrite__ = 'Copyright (C) 2021 Chris Caron <[email protected]>' | ||
__email__ = '[email protected]' | ||
__status__ = 'Production' | ||
|
||
|