pyblu 2.0.2__tar.gz → 2.0.4__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.
pyblu-2.0.4/.gitignore ADDED
@@ -0,0 +1,169 @@
1
+ # uv
2
+ uv.lock
3
+
4
+ # sphinx documentation
5
+ /_site/
6
+
7
+ # JetBrains
8
+ .idea/
9
+
10
+ # Byte-compiled / optimized / DLL files
11
+ __pycache__/
12
+ *.py[cod]
13
+ *$py.class
14
+
15
+ # C extensions
16
+ *.so
17
+
18
+ # Distribution / packaging
19
+ .Python
20
+ build/
21
+ develop-eggs/
22
+ dist/
23
+ downloads/
24
+ eggs/
25
+ .eggs/
26
+ lib/
27
+ lib64/
28
+ parts/
29
+ sdist/
30
+ var/
31
+ wheels/
32
+ share/python-wheels/
33
+ *.egg-info/
34
+ .installed.cfg
35
+ *.egg
36
+ MANIFEST
37
+
38
+ # PyInstaller
39
+ # Usually these files are written by a python script from a template
40
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
41
+ *.manifest
42
+ *.spec
43
+
44
+ # Installer logs
45
+ pip-log.txt
46
+ pip-delete-this-directory.txt
47
+
48
+ # Unit test / coverage reports
49
+ htmlcov/
50
+ .tox/
51
+ .nox/
52
+ .coverage
53
+ .coverage.*
54
+ .cache
55
+ nosetests.xml
56
+ coverage.xml
57
+ *.cover
58
+ *.py,cover
59
+ .hypothesis/
60
+ .pytest_cache/
61
+ cover/
62
+
63
+ # Translations
64
+ *.mo
65
+ *.pot
66
+
67
+ # Django stuff:
68
+ *.log
69
+ local_settings.py
70
+ db.sqlite3
71
+ db.sqlite3-journal
72
+
73
+ # Flask stuff:
74
+ instance/
75
+ .webassets-cache
76
+
77
+ # Scrapy stuff:
78
+ .scrapy
79
+
80
+ # Sphinx documentation
81
+ docs/_build/
82
+
83
+ # PyBuilder
84
+ .pybuilder/
85
+ target/
86
+
87
+ # Jupyter Notebook
88
+ .ipynb_checkpoints
89
+
90
+ # IPython
91
+ profile_default/
92
+ ipython_config.py
93
+
94
+ # pyenv
95
+ # For a library or package, you might want to ignore these files since the code is
96
+ # intended to run in multiple environments; otherwise, check them in:
97
+ # .python-version
98
+
99
+ # pipenv
100
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
101
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
102
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
103
+ # install all needed dependencies.
104
+ #Pipfile.lock
105
+
106
+ # poetry
107
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
108
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
109
+ # commonly ignored for libraries.
110
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
111
+ #poetry.lock
112
+
113
+ # pdm
114
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
115
+ #pdm.lock
116
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
117
+ # in version control.
118
+ # https://pdm.fming.dev/#use-with-ide
119
+ .pdm.toml
120
+
121
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
122
+ __pypackages__/
123
+
124
+ # Celery stuff
125
+ celerybeat-schedule
126
+ celerybeat.pid
127
+
128
+ # SageMath parsed files
129
+ *.sage.py
130
+
131
+ # Environments
132
+ .env
133
+ .venv
134
+ env/
135
+ venv/
136
+ ENV/
137
+ env.bak/
138
+ venv.bak/
139
+
140
+ # Spyder project settings
141
+ .spyderproject
142
+ .spyproject
143
+
144
+ # Rope project settings
145
+ .ropeproject
146
+
147
+ # mkdocs documentation
148
+ /site
149
+
150
+ # mypy
151
+ .mypy_cache/
152
+ .dmypy.json
153
+ dmypy.json
154
+
155
+ # Pyre type checker
156
+ .pyre/
157
+
158
+ # pytype static type analyzer
159
+ .pytype/
160
+
161
+ # Cython debug symbols
162
+ cython_debug/
163
+
164
+ # PyCharm
165
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
166
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
167
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
168
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
169
+ #.idea/
@@ -1,19 +1,12 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: pyblu
3
- Version: 2.0.2
4
- Summary:
5
- License: MIT
6
- Author: Louis Christ
7
- Author-email: mail@louischrist.de
8
- Requires-Python: >=3.11,<4.0
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.11
12
- Classifier: Programming Language :: Python :: 3.12
13
- Classifier: Programming Language :: Python :: 3.13
14
- Requires-Dist: aiohttp (>=3.11.11)
15
- Requires-Dist: lxml (>=5.0.0)
16
- Project-URL: Repository, https://github.com/LouisChrist/pyblu
3
+ Version: 2.0.4
4
+ Project-URL: repository, https://github.com/LouisChrist/pyblu
5
+ Author-email: Louis Christ <mail@louischrist.de>
6
+ License-Expression: MIT
7
+ License-File: LICENSE
8
+ Requires-Dist: aiohttp>=3.11.11
9
+ Requires-Dist: lxml>=5.0.0
17
10
  Description-Content-Type: text/markdown
18
11
 
19
12
  # pyblu
@@ -47,4 +40,3 @@ pip install pyblu
47
40
  ```
48
41
 
49
42
 
50
-
@@ -0,0 +1,57 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27.0"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "pyblu"
7
+ version = "2.0.4"
8
+ description = ""
9
+ license = "MIT"
10
+ authors = [{ name = "Louis Christ", email = "mail@louischrist.de" }]
11
+ readme = "README.md"
12
+ dependencies = [
13
+ "aiohttp >= 3.11.11",
14
+ "lxml >= 5.0.0"]
15
+
16
+ [project.urls]
17
+ repository = "https://github.com/LouisChrist/pyblu"
18
+
19
+ [tool.hatch.build.targets.sdist]
20
+ include = ["src"]
21
+
22
+ [tool.hatch.build.targets.wheel]
23
+ packages = ["src/pyblu"]
24
+
25
+ [tool.uv]
26
+ dev-dependencies = [
27
+ "pylint >= 3.2.6",
28
+ "black >= 24.8.0",
29
+ "pytest >= 8.3.2",
30
+ "aioresponses >= 0.7.6",
31
+ "pytest-asyncio >= 0.24.0",
32
+ "sphinx >= 8.0.2",
33
+ "invoke >= 2.2.0",
34
+ "semver >= 3.0.2",
35
+ "mypy >= 1.11.2",
36
+ "pygithub >= 2.4.0",
37
+ "types-lxml >= 2024.8.7"]
38
+
39
+ [tool.pylint."messages control"]
40
+ disable = [
41
+ "missing-function-docstring",
42
+ "missing-module-docstring",
43
+ "missing-class-docstring",
44
+ "too-many-instance-attributes",
45
+ "too-many-public-methods",
46
+ "duplicate-code",
47
+ ]
48
+
49
+ [tool.pylint.format]
50
+ max-line-length = 160
51
+
52
+ [tool.black]
53
+ line-length = 160
54
+
55
+ [tool.pytest.ini_options]
56
+ pythonpath = "src"
57
+ asyncio_mode = "auto"
@@ -1,53 +0,0 @@
1
- [tool.poetry]
2
- name = "pyblu"
3
- version = "2.0.2"
4
- description = ""
5
- authors = ["Louis Christ <mail@louischrist.de>"]
6
- repository = "https://github.com/LouisChrist/pyblu"
7
- license = "MIT"
8
- readme = "README.md"
9
- packages = [
10
- { include = "pyblu", from = "src" },
11
- ]
12
-
13
- [tool.poetry.dependencies]
14
- python = "^3.11"
15
- aiohttp = ">=3.11.11"
16
- lxml = ">=5.0.0"
17
-
18
- [tool.poetry.group.dev.dependencies]
19
- pylint = "^3.3.1"
20
- black = "^25.1.0"
21
- pytest = "^8.3.3"
22
- aioresponses = "^0.7.8"
23
- pytest-asyncio = "^0.24.0"
24
- sphinx = "^8.1.3"
25
- invoke = "^2.2.0"
26
- semver = "^3.0.2"
27
- mypy = "^1.13.0"
28
- pygithub = "^2.5.0"
29
- types-lxml = "^2024.12.13"
30
-
31
- [build-system]
32
- requires = ["poetry-core"]
33
- build-backend = "poetry.core.masonry.api"
34
-
35
- [tool.pylint."messages control"]
36
- disable = [
37
- "missing-function-docstring",
38
- "missing-module-docstring",
39
- "missing-class-docstring",
40
- "too-many-instance-attributes",
41
- "too-many-public-methods",
42
- "duplicate-code",
43
- ]
44
-
45
- [tool.pylint.format]
46
- max-line-length = 160
47
-
48
- [tool.black]
49
- line-length = 160
50
-
51
- [tool.pytest.ini_options]
52
- pythonpath = "src"
53
- asyncio_mode = "auto"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes