-
Notifications
You must be signed in to change notification settings - Fork 77
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 #193 from flacjacket/async
Add async APIs throughout
- Loading branch information
Showing
20 changed files
with
1,640 additions
and
305 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 |
---|---|---|
|
@@ -3,33 +3,39 @@ | |
|
||
|
||
def readme(): | ||
with open('README.rst') as desc: | ||
with open("README.rst") as desc: | ||
return desc.read() | ||
|
||
|
||
setup(name='amcrest', | ||
version='1.8.1', | ||
description='Python wrapper implementation for Amcrest cameras.', | ||
long_description=readme(), | ||
author='Douglas Schilling Landgraf, Marcelo Moreira de Mello', | ||
author_email='[email protected], [email protected]', | ||
url='http://github.com/tchellomello/python-amcrest', | ||
license='GPLv2', | ||
install_requires=[ | ||
'argcomplete', 'requests', 'typing_extensions', 'urllib3' | ||
], | ||
package_dir={'': 'src'}, | ||
packages=find_packages('src'), | ||
include_package_data=True, | ||
package_data={"amcrest": ["py.typed"]}, | ||
test_suite='tests', | ||
scripts=['cli/amcrest-cli', 'tui/amcrest-tui'], | ||
zip_safe=True, | ||
keywords="amcrest camera python", | ||
classifiers=[ | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
]) | ||
setup( | ||
name="amcrest", | ||
version="1.8.1", | ||
description="Python wrapper implementation for Amcrest cameras.", | ||
long_description=readme(), | ||
author="Douglas Schilling Landgraf, Marcelo Moreira de Mello", | ||
author_email="[email protected], [email protected]", | ||
url="http://github.com/tchellomello/python-amcrest", | ||
license="GPLv2", | ||
install_requires=[ | ||
"argcomplete", | ||
"httpx", | ||
"requests", | ||
"typing_extensions", | ||
"urllib3", | ||
], | ||
package_dir={"": "src"}, | ||
packages=find_packages("src"), | ||
include_package_data=True, | ||
package_data={"amcrest": ["py.typed"]}, | ||
test_suite="tests", | ||
scripts=["cli/amcrest-cli", "tui/amcrest-tui"], | ||
zip_safe=True, | ||
keywords="amcrest camera python", | ||
classifiers=[ | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.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
Oops, something went wrong.