pax_global_header00006660000000000000000000000064142764402700014520gustar00rootroot0000000000000052 comment=8211a8618ca16b7c22184707971a96537366e23f home-assistant-libs-pydroid-ipcam-8211a86/000077500000000000000000000000001427644027000204215ustar00rootroot00000000000000home-assistant-libs-pydroid-ipcam-8211a86/.devcontainer/000077500000000000000000000000001427644027000231605ustar00rootroot00000000000000home-assistant-libs-pydroid-ipcam-8211a86/.devcontainer/Dockerfile000066400000000000000000000005201427644027000251470ustar00rootroot00000000000000FROM mcr.microsoft.com/vscode/devcontainers/python:0-3.7 WORKDIR /workspaces # Install Python dependencies from requirements.txt if it exists COPY requirements.txt requirements_tests.txt ./ RUN pip3 install -r requirements.txt -r requirements_tests.txt \ && pip3 install tox \ && rm -f requirements.txt requirements_tests.txt home-assistant-libs-pydroid-ipcam-8211a86/.devcontainer/devcontainer.json000066400000000000000000000014411427644027000265340ustar00rootroot00000000000000// See https://aka.ms/vscode-remote/devcontainer.json for format details. { "name": "pydroid-ipcam dev", "context": "..", "dockerFile": "Dockerfile", "postCreateCommand": "pip3 install -e .", "runArgs": ["-e", "GIT_EDITOR=code --wait"], "extensions": [ "ms-python.python", "ms-python.vscode-pylance", "visualstudioexptteam.vscodeintellicode", "esbenp.prettier-vscode" ], "settings": { "python.pythonPath": "/usr/local/bin/python", "python.linting.pylintEnabled": true, "python.linting.enabled": true, "python.formatting.provider": "black", "python.formatting.blackArgs": ["--target-version", "py37"], "editor.formatOnPaste": false, "editor.formatOnSave": true, "editor.formatOnType": true, "files.trimTrailingWhitespace": true } } home-assistant-libs-pydroid-ipcam-8211a86/.github/000077500000000000000000000000001427644027000217615ustar00rootroot00000000000000home-assistant-libs-pydroid-ipcam-8211a86/.github/dependabot.yml000066400000000000000000000001751427644027000246140ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: pip directory: "/" schedule: interval: daily open-pull-requests-limit: 10 home-assistant-libs-pydroid-ipcam-8211a86/.github/release-drafter.yml000066400000000000000000000003341427644027000255510ustar00rootroot00000000000000categories: - title: "⚠ Breaking Changes" labels: - "breaking-change" - title: '⬆️ Dependencies' collapse-after: 1 labels: - 'dependencies' template: | ## What’s Changed $CHANGES home-assistant-libs-pydroid-ipcam-8211a86/.github/workflows/000077500000000000000000000000001427644027000240165ustar00rootroot00000000000000home-assistant-libs-pydroid-ipcam-8211a86/.github/workflows/pythonpublish.yml000066400000000000000000000015551427644027000274570ustar00rootroot00000000000000# This workflows will upload a Python Package using Twine when a release is created # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries name: Upload Python Package on: release: types: [published] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v1 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools wheel twine - name: Build and publish env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} run: | python setup.py sdist bdist_wheel twine upload dist/* home-assistant-libs-pydroid-ipcam-8211a86/.github/workflows/release-drafter.yml000066400000000000000000000004721427644027000276110ustar00rootroot00000000000000name: Release Drafter on: push: # branches to consider in the event; optional, defaults to all branches: - master jobs: update_release_draft: runs-on: ubuntu-latest steps: - uses: release-drafter/release-drafter@v5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} home-assistant-libs-pydroid-ipcam-8211a86/.github/workflows/test.yml000066400000000000000000000012061427644027000255170ustar00rootroot00000000000000# This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Run Tests on: push: branches: [master] pull_request: branches: [master] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 uses: actions/setup-python@v1 with: python-version: 3.8 - name: Install dependencies run: | pip install tox - name: Run Tox run: | tox home-assistant-libs-pydroid-ipcam-8211a86/.gitignore000066400000000000000000000040211427644027000224060ustar00rootroot00000000000000# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ cover/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder .pybuilder/ target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv # For a library or package, you might want to ignore these files since the code is # intended to run in multiple environments; otherwise, check them in: .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # pytype static type analyzer .pytype/ # Cython debug symbols cython_debug/ # Visual Studio Code .vscode/* home-assistant-libs-pydroid-ipcam-8211a86/LICENSE000066400000000000000000000261351427644027000214350ustar00rootroot00000000000000 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. home-assistant-libs-pydroid-ipcam-8211a86/MANIFEST.in000066400000000000000000000000731427644027000221570ustar00rootroot00000000000000include README.md include requirements.txt include LICENSE home-assistant-libs-pydroid-ipcam-8211a86/README.md000066400000000000000000000004321427644027000216770ustar00rootroot00000000000000# PyDroid-IpCam A Python asyncio library for interacting with the [IP Webcam](https://play.google.com/store/apps/details?id=com.pas.webcam) app that allows to use the built-in camera of Android phones as IP camera. Original written for [Home Assistant](http://home-assistant.io). home-assistant-libs-pydroid-ipcam-8211a86/pydroid_ipcam/000077500000000000000000000000001427644027000232445ustar00rootroot00000000000000home-assistant-libs-pydroid-ipcam-8211a86/pydroid_ipcam/__init__.py000066400000000000000000000175521427644027000253670ustar00rootroot00000000000000"""PyDroidIPCam API for the Android IP Webcam app.""" import asyncio from typing import Any, Dict, List, Optional, Union, cast import aiohttp from yarl import URL from .exceptions import CannotConnect, PyDroidIPCamException, Unauthorized ALLOWED_ORIENTATIONS = ["landscape", "upsidedown", "portrait", "upsidedown_portrait"] class PyDroidIPCam: """The Android device running IP Webcam.""" def __init__( self, websession: aiohttp.ClientSession, host: str, port: int = 8080, username: Optional[str] = None, password: Optional[str] = None, timeout: int = 10, ssl: bool = True, ): """Initialize the data object.""" self.websession: aiohttp.ClientSession = websession self.status_data: Dict[str, Any] = {} self.sensor_data: Dict[str, Dict[str, Any]] = {} self._host: str = host self._port: int = port self._auth: Optional[aiohttp.BasicAuth] = None self._timeout: aiohttp.ClientTimeout = aiohttp.ClientTimeout(total=timeout) self._ssl: bool = ssl if username and password: self._auth = aiohttp.BasicAuth(username, password=password) @property def base_url(self) -> str: """Return the base URL for endpoints.""" protocol = "https" if self._ssl else "http" return f"{protocol}://{self._host}:{self._port}" @property def mjpeg_url(self) -> str: """Return mjpeg url.""" return f"{self.base_url}/video" @property def h264_url(self) -> str: """Return h264 url.""" return f"rtsp://{self._host}:{self._port}/h264_pcm.sdp" @property def image_url(self) -> str: """Return snapshot image URL.""" return f"{self.base_url}/shot.jpg" async def _request(self, path: str) -> aiohttp.ClientResponse: """Make the actual request and return the parsed response.""" url: str = f"{self.base_url}{path}" try: response = await self.websession.get( url, auth=self._auth, timeout=self._timeout, raise_for_status=True ) except aiohttp.ClientResponseError as error: if error.status == 401: raise Unauthorized("Incorrect username or password") from error raise PyDroidIPCamException( f"code: {error.code}, error: {error.message}" ) from error except (asyncio.TimeoutError, aiohttp.ClientError) as error: raise CannotConnect(error) from error return response async def update(self) -> None: """Fetch the latest data from IP Webcam.""" response = await self._request("/status.json?show_avail=1") self.status_data = cast(Dict[str, Any], await response.json()) response = await self._request("/sensors.json") self.sensor_data = cast(Dict[str, Any], await response.json()) @property def current_settings(self) -> Dict[str, Any]: """Return dict with all config included.""" settings: Dict[str, Any] = {} for (key, val) in self.status_data.get("curvals", {}).items(): try: val = float(val) except ValueError: pass if val in ("on", "off"): val = val == "on" settings[key] = val return settings @property def enabled_sensors(self) -> List[str]: """Return the enabled sensors.""" return list(self.sensor_data) @property def enabled_settings(self) -> List[str]: """Return the enabled settings.""" return list(self.status_data.get("curvals", {})) @property def available_settings(self) -> Dict[str, List[Any]]: """Return dict of lists with all available config settings.""" available: Dict[str, List[Any]] = {} for (key, val) in self.status_data.get("avail", {}).items(): available[key] = [] for subval in val: try: subval = float(subval) except ValueError: pass if val in ("on", "off"): subval = subval == "on" available[key].append(subval) return available def get_sensor_value(self, sensor: str) -> Union[str, int, float, None]: """Return the value from a sensor node.""" if sensor_info := self.sensor_data.get(sensor): if "data" in sensor_info: return cast(Union[str, int, float], sensor_info["data"][-1][-1][0]) return None def get_sensor_unit(self, sensor: str) -> Optional[str]: """Return the unit from a sensor node.""" if sensor_info := self.sensor_data.get(sensor): return cast(Optional[str], sensor_info.get("unit")) return None async def change_setting(self, key: str, val: Union[str, int, bool]) -> bool: """Change a setting.""" payload: Union[str, int, None] = None if isinstance(val, bool): payload = "on" if val else "off" else: payload = val response = await self._request(f"/settings/{key}?set={payload}") return "Ok" in (await response.text()) async def torch(self, activate: bool = True) -> bool: """Enable/disable the torch.""" path = "/enabletorch" if activate else "/disabletorch" response = await self._request(path) return "Ok" in (await response.text()) async def focus(self, activate: bool = True) -> bool: """Enable/disable camera focus.""" path = "/focus" if activate else "/nofocus" response = await self._request(path) return "Ok" in (await response.text()) async def record(self, record: bool = True, tag: Optional[str] = None) -> bool: """Enable/disable recording.""" path = "/startvideo?force=1" if record else "/stopvideo?force=1" if record and tag is not None: path = f"/startvideo?force=1&tag={URL(tag).raw_path}" response = await self._request(path) return "Ok" in (await response.text()) async def set_front_facing_camera(self, activate: bool = True) -> bool: """Enable/disable the front-facing camera.""" return await self.change_setting("ffc", activate) async def set_night_vision(self, activate: bool = True) -> bool: """Enable/disable night vision.""" return await self.change_setting("night_vision", activate) async def set_overlay(self, activate: bool = True) -> bool: """Enable/disable the video overlay.""" return await self.change_setting("overlay", activate) async def set_gps_active(self, activate: bool = True) -> bool: """Enable/disable GPS.""" return await self.change_setting("gps_active", activate) async def set_quality(self, quality: int = 100) -> bool: """Set the video quality.""" return await self.change_setting("quality", quality) async def set_motion_detect(self, activate: bool = True) -> bool: """Set motion detection on/off.""" return await self.change_setting("motion_detect", activate) async def set_orientation(self, orientation: str = "landscape") -> bool: """Set the video orientation.""" if orientation not in ALLOWED_ORIENTATIONS: raise RuntimeError(f"Invalid orientation {orientation}") return await self.change_setting("orientation", orientation) async def set_zoom(self, zoom: int) -> bool: """Set the zoom level.""" response = await self._request(f"/settings/ptz?zoom={zoom}") return "Ok" in (await response.text()) async def set_scenemode(self, scenemode: str = "auto") -> bool: """Set the video scene mode.""" if scenemode not in self.available_settings["scenemode"]: raise RuntimeError(f"Invalid scene mode {scenemode}") return await self.change_setting("scenemode", scenemode) home-assistant-libs-pydroid-ipcam-8211a86/pydroid_ipcam/exceptions.py000066400000000000000000000004721427644027000260020ustar00rootroot00000000000000"""PyDroidIPCam excpetions.""" class PyDroidIPCamException(Exception): """Base exception for PyDroidIPCam.""" class Unauthorized(PyDroidIPCamException): """Username or password is incorrect.""" class CannotConnect(PyDroidIPCamException): """Exception raised when failed to connect the client.""" home-assistant-libs-pydroid-ipcam-8211a86/pydroid_ipcam/py.typed000066400000000000000000000000001427644027000247310ustar00rootroot00000000000000home-assistant-libs-pydroid-ipcam-8211a86/pylintrc000066400000000000000000000010111427644027000222010ustar00rootroot00000000000000[MAIN] reports=no jobs=2 good-names=id,i,j,k,ex,Run,_,fp,T # Reasons disabled: # format - handled by black # locally-disabled - it spams too much # duplicate-code - unavoidable # unused-argument - generic callbacks and setup methods create a lot of warnings # too-many-* - are not enforced for the sake of readability # too-few-* - same as too-many-* disable= format, duplicate-code, locally-disabled, too-few-public-methods, too-many-public-methods, unused-argument, [DESIGN] max-args=9 max-attributes=9 home-assistant-libs-pydroid-ipcam-8211a86/requirements.txt000066400000000000000000000000171427644027000237030ustar00rootroot00000000000000aiohttp==3.8.1 home-assistant-libs-pydroid-ipcam-8211a86/requirements_tests.txt000066400000000000000000000000671427644027000251320ustar00rootroot00000000000000black==22.6.0 flake8==5.0.4 mypy==0.971 pylint==2.14.5 home-assistant-libs-pydroid-ipcam-8211a86/setup.cfg000066400000000000000000000015101427644027000222370ustar00rootroot00000000000000[isort] multi_line_output = 3 include_trailing_comma=True force_grid_wrap=0 line_length=88 indent = " " force_sort_within_sections = true sections = FUTURE,STDLIB,INBETWEENS,THIRDPARTY,FIRSTPARTY,LOCALFOLDER default_section = THIRDPARTY forced_separate = tests combine_as_imports = true use_parentheses = true [flake8] max-line-length = 88 ignore = E501, E203 [mypy] show_error_codes = true follow_imports = skip ignore_missing_imports = true check_untyped_defs = true disallow_incomplete_defs = true disallow_subclassing_any = true disallow_untyped_calls = true disallow_untyped_decorators = true disallow_untyped_defs = true no_implicit_optional = true strict_equality = true warn_return_any = true warn_unreachable = true warn_unused_ignores = true warn_incomplete_stub = true warn_redundant_casts = true warn_unused_configs = true home-assistant-libs-pydroid-ipcam-8211a86/setup.py000066400000000000000000000020531427644027000221330ustar00rootroot00000000000000"""Set up pydroid_ipcam package.""" from pathlib import Path from setuptools import setup PROJECT_DIR = Path(__file__).parent.resolve() README_FILE = PROJECT_DIR / "README.md" REQUIRES = ["aiohttp>=3.6.2"] setup( name="pydroid-ipcam", version="2.0.0", license="Apache License 2.0", url="https://github.com/home-assistant-libs/pydroid-ipcam", author="Pascal Vizeli", author_email="pvizeli@syshack.ch", description="Library for handling the Android IP Webcam app", long_description=README_FILE.read_text(encoding="utf-8"), long_description_content_type="text/markdown", packages=["pydroid_ipcam"], package_data={"pydroid_ipcam": ["py.typed"]}, python_requires=">=3.8", zip_safe=True, platforms="any", install_requires=REQUIRES, classifiers=[ "Intended Audience :: Developers", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules", ], ) home-assistant-libs-pydroid-ipcam-8211a86/tox.ini000066400000000000000000000006241427644027000217360ustar00rootroot00000000000000[tox] envlist = lint, black, mypy [testenv] basepython = python3 deps = -r{toxinidir}/requirements.txt -r{toxinidir}/requirements_tests.txt [testenv:lint] ignore_errors = True commands = flake8 pydroid_ipcam setup.py pylint --rcfile pylintrc pydroid_ipcam setup.py [testenv:black] commands = black --check pydroid_ipcam setup.py [testenv:mypy] commands = mypy pydroid_ipcam