-
Notifications
You must be signed in to change notification settings - Fork 3
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
Joachim Lusiardi
committed
Feb 11, 2020
1 parent
0de4b65
commit 294f328
Showing
2 changed files
with
4 additions
and
2 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
coverage | ||
pytest | ||
flake8 | ||
twine | ||
|
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 |
---|---|---|
|
@@ -23,14 +23,14 @@ | |
setuptools.setup( | ||
name='tlv8', | ||
packages=setuptools.find_packages(exclude=['tests']), | ||
version='0.1.0', | ||
version='0.2.0', | ||
description='Python module to handle type-length-value (TLV) encoded data 8-bit type, 8-bit length, and N-byte ' | ||
'value as described within the Apple HomeKit Accessory Protocol Specification Non-Commercial Version ' | ||
'Release R2.', | ||
author='Joachim Lusiardi', | ||
author_email='[email protected]', | ||
url='https://github.com/jlusiardi/tlv8_python', | ||
download_url='https://github.com/jlusiardi/tlv8_python/archive/0.1.0.tar.gz', | ||
download_url='https://github.com/jlusiardi/tlv8_python/archive/0.2.0.tar.gz', | ||
keywords=['TLV', 'Type-Length-Value', 'tlv8'], | ||
classifiers=[ | ||
'License :: OSI Approved :: Apache Software License', | ||
|