blueair-api 1.9.5__tar.gz → 1.9.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {blueair_api-1.9.5/src/blueair_api.egg-info → blueair_api-1.9.6}/PKG-INFO +8 -10
  2. blueair_api-1.9.6/pyproject.toml +38 -0
  3. {blueair_api-1.9.5 → blueair_api-1.9.6/src/blueair_api.egg-info}/PKG-INFO +8 -10
  4. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api.egg-info/SOURCES.txt +0 -1
  5. blueair_api-1.9.5/pyproject.toml +0 -6
  6. blueair_api-1.9.5/setup.py +0 -39
  7. {blueair_api-1.9.5 → blueair_api-1.9.6}/LICENSE +0 -0
  8. {blueair_api-1.9.5 → blueair_api-1.9.6}/README.md +0 -0
  9. {blueair_api-1.9.5 → blueair_api-1.9.6}/setup.cfg +0 -0
  10. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/__init__.py +0 -0
  11. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/callbacks.py +0 -0
  12. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/const.py +0 -0
  13. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/device.py +0 -0
  14. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/device_aws.py +0 -0
  15. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/errors.py +0 -0
  16. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/http_aws_blueair.py +0 -0
  17. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/http_blueair.py +0 -0
  18. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/stub.py +0 -0
  19. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/util.py +0 -0
  20. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/util_bootstrap.py +0 -0
  21. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api/util_http.py +0 -0
  22. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api.egg-info/dependency_links.txt +0 -0
  23. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api.egg-info/requires.txt +0 -0
  24. {blueair_api-1.9.5 → blueair_api-1.9.6}/src/blueair_api.egg-info/top_level.txt +0 -0
@@ -1,21 +1,19 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: blueair_api
3
- Version: 1.9.5
3
+ Version: 1.9.6
4
4
  Summary: Blueair Api Wrapper
5
- Home-page: https://github.com/dahlb/blueair_api
6
- Author: Brendan Dahl
7
- Author-email: dahl.brendan@gmail.com
8
- Project-URL: Bug Reports, https://github.com/dahlb/blueair_api/issues
9
- Project-URL: Source, https://github.com/dahlb/blueair_api
10
- Keywords: blueair,api
5
+ Author-email: Brendan Dahl <dahl.brendan@gmail.com>
6
+ Project-URL: Homepage, https://github.com/dahlb/blueair_api
7
+ Project-URL: Bug Tracker, https://github.com/dahlb/blueair_api/issues
8
+ Keywords: hatch,rest-mini,api
11
9
  Classifier: Development Status :: 4 - Beta
12
- Classifier: Framework :: AsyncIO
13
10
  Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Framework :: AsyncIO
14
12
  Classifier: Natural Language :: English
15
13
  Classifier: Intended Audience :: Developers
16
- Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.12
17
15
  Classifier: Operating System :: MacOS :: MacOS X
18
- Requires-Python: >=3.9, <4
16
+ Requires-Python: <4,>=3.12.0
19
17
  Description-Content-Type: text/markdown
20
18
  License-File: LICENSE
21
19
  Requires-Dist: aiohttp>=3.8.1
@@ -0,0 +1,38 @@
1
+ [build-system]
2
+ requires = [
3
+ "setuptools>=68.0.0",
4
+ "wheel",
5
+ "aiohttp>=3.8.1",
6
+ ]
7
+ build-backend = "setuptools.build_meta"
8
+
9
+ [project]
10
+ name = "blueair_api"
11
+ version = "1.9.6"
12
+ authors = [
13
+ { name="Brendan Dahl", email="dahl.brendan@gmail.com" },
14
+ ]
15
+ description = "Blueair Api Wrapper"
16
+ readme = "README.md"
17
+ requires-python = ">=3.12.0, <4"
18
+ dependencies = [
19
+ "aiohttp>=3.8.1",
20
+ ]
21
+ classifiers = [
22
+ "Development Status :: 4 - Beta",
23
+ "License :: OSI Approved :: MIT License",
24
+ "Framework :: AsyncIO",
25
+ "Natural Language :: English",
26
+ "Intended Audience :: Developers",
27
+ "Programming Language :: Python :: 3.12",
28
+ "Operating System :: MacOS :: MacOS X",
29
+ ]
30
+ keywords = [
31
+ "hatch",
32
+ "rest-mini",
33
+ "api"
34
+ ]
35
+
36
+ [project.urls]
37
+ "Homepage" = "https://github.com/dahlb/blueair_api"
38
+ "Bug Tracker" = "https://github.com/dahlb/blueair_api/issues"
@@ -1,21 +1,19 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: blueair_api
3
- Version: 1.9.5
3
+ Version: 1.9.6
4
4
  Summary: Blueair Api Wrapper
5
- Home-page: https://github.com/dahlb/blueair_api
6
- Author: Brendan Dahl
7
- Author-email: dahl.brendan@gmail.com
8
- Project-URL: Bug Reports, https://github.com/dahlb/blueair_api/issues
9
- Project-URL: Source, https://github.com/dahlb/blueair_api
10
- Keywords: blueair,api
5
+ Author-email: Brendan Dahl <dahl.brendan@gmail.com>
6
+ Project-URL: Homepage, https://github.com/dahlb/blueair_api
7
+ Project-URL: Bug Tracker, https://github.com/dahlb/blueair_api/issues
8
+ Keywords: hatch,rest-mini,api
11
9
  Classifier: Development Status :: 4 - Beta
12
- Classifier: Framework :: AsyncIO
13
10
  Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Framework :: AsyncIO
14
12
  Classifier: Natural Language :: English
15
13
  Classifier: Intended Audience :: Developers
16
- Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.12
17
15
  Classifier: Operating System :: MacOS :: MacOS X
18
- Requires-Python: >=3.9, <4
16
+ Requires-Python: <4,>=3.12.0
19
17
  Description-Content-Type: text/markdown
20
18
  License-File: LICENSE
21
19
  Requires-Dist: aiohttp>=3.8.1
@@ -1,7 +1,6 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
- setup.py
5
4
  src/blueair_api/__init__.py
6
5
  src/blueair_api/callbacks.py
7
6
  src/blueair_api/const.py
@@ -1,6 +0,0 @@
1
- [build-system]
2
- requires = [
3
- "setuptools>=42",
4
- "wheel"
5
- ]
6
- build-backend = "setuptools.build_meta"
@@ -1,39 +0,0 @@
1
- from setuptools import setup, find_packages
2
- import pathlib
3
-
4
- here = pathlib.Path(__file__).parent.resolve()
5
-
6
- # Get the long description from the README file
7
- LONG_DESCRIPTION = (here / "README.md").read_text(encoding="utf-8")
8
-
9
- VERSION = "1.9.5"
10
-
11
- # Setting up
12
- setup(
13
- name="blueair_api",
14
- version=VERSION,
15
- author="Brendan Dahl",
16
- author_email="dahl.brendan@gmail.com",
17
- description="Blueair Api Wrapper",
18
- long_description=LONG_DESCRIPTION,
19
- long_description_content_type="text/markdown",
20
- package_dir={"": "src"},
21
- packages=find_packages(where="src"),
22
- install_requires=["aiohttp>=3.8.1"],
23
- keywords=["blueair", "api"],
24
- classifiers=[
25
- "Development Status :: 4 - Beta",
26
- "Framework :: AsyncIO",
27
- "License :: OSI Approved :: MIT License",
28
- "Natural Language :: English",
29
- "Intended Audience :: Developers",
30
- "Programming Language :: Python :: 3",
31
- "Operating System :: MacOS :: MacOS X",
32
- ],
33
- python_requires=">=3.9, <4",
34
- url="https://github.com/dahlb/blueair_api",
35
- project_urls={
36
- "Bug Reports": "https://github.com/dahlb/blueair_api/issues",
37
- "Source": "https://github.com/dahlb/blueair_api",
38
- },
39
- )
File without changes
File without changes
File without changes