This repository has been archived by the owner on Jan 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from rccoleman/async
Re-enable polling and switch to PyCryptodome
- Loading branch information
Showing
5 changed files
with
31 additions
and
33 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
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
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 +1 @@ | ||
cryptodomex>=3.9.9 | ||
pycryptodome>=3.9.9 |
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,29 +1,29 @@ | ||
from setuptools import setup | ||
|
||
with open('README.md', 'r') as f: | ||
with open("README.md", "r") as f: | ||
readme = f.read() | ||
|
||
setup( | ||
name='lmdirect', | ||
version='v0.1', | ||
description='A Python implementation of the local La Marzocco API', | ||
name="lmdirect", | ||
version="v0.1", | ||
description="A Python implementation of the local La Marzocco API", | ||
long_description=readme, | ||
url='https://github.com/rccoleman/lmdirect', | ||
author='Rob Coleman', | ||
author_email='[email protected]', | ||
license='MIT', | ||
url="https://github.com/rccoleman/lmdirect", | ||
author="Rob Coleman", | ||
author_email="[email protected]", | ||
license="MIT", | ||
classifiers=[ | ||
'Development Status :: 1 - Experimental', | ||
'Intended Audience :: Developers', | ||
'Natural Language :: English', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
], | ||
packages=['lmdirect'], | ||
install_requires=[ | ||
'pycryptodomex>=3.9.9; python_version > "3.8"' | ||
], | ||
package_data={'license': ['LICENSE'],}, | ||
packages=["lmdirect"], | ||
install_requires=["pycryptodome>=3.9.9"], | ||
package_data={ | ||
"license": ["LICENSE"], | ||
}, | ||
) |
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