piwave 2.0.3__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.
@@ -1,38 +1,29 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: piwave
3
- Version: 2.0.3
4
- Summary: A python module to broacast radio waves with your Raspberry Pi.
3
+ Version: 2.0.4
4
+ Summary: A python module to broadcast radio waves with your Raspberry Pi.
5
5
  Home-page: https://github.com/douxxtech/piwave
6
6
  Author: Douxx
7
7
  Author-email: douxx@douxx.tech
8
+ License: GPL-3.0-or-later
8
9
  Project-URL: Bug Reports, https://github.com/douxxtech/piwave/issues
9
10
  Project-URL: Source, https://github.com/douxxtech/piwave
10
11
  Keywords: raspberry pi,radio,fm,rds,streaming,audio,broadcast
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
11
15
  Classifier: Programming Language :: Python :: 3
12
16
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
13
17
  Classifier: Operating System :: POSIX :: Linux
14
18
  Requires-Python: >=3.7
15
19
  Description-Content-Type: text/markdown
16
20
  License-File: LICENSE
17
- Requires-Dist: pathlib
18
21
  Provides-Extra: dev
19
22
  Requires-Dist: pytest>=6.0; extra == "dev"
20
23
  Requires-Dist: pytest-cov>=2.0; extra == "dev"
21
24
  Requires-Dist: black>=22.0; extra == "dev"
22
25
  Requires-Dist: flake8>=4.0; extra == "dev"
23
- Dynamic: author
24
- Dynamic: author-email
25
- Dynamic: classifier
26
- Dynamic: description
27
- Dynamic: description-content-type
28
- Dynamic: home-page
29
- Dynamic: keywords
30
26
  Dynamic: license-file
31
- Dynamic: project-url
32
- Dynamic: provides-extra
33
- Dynamic: requires-dist
34
- Dynamic: requires-python
35
- Dynamic: summary
36
27
 
37
28
  <div align=center>
38
29
  <img alt="PiWave image" src="https://piwave.xyz/static/img/logo.png"/>
@@ -1,38 +1,29 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: piwave
3
- Version: 2.0.3
4
- Summary: A python module to broacast radio waves with your Raspberry Pi.
3
+ Version: 2.0.4
4
+ Summary: A python module to broadcast radio waves with your Raspberry Pi.
5
5
  Home-page: https://github.com/douxxtech/piwave
6
6
  Author: Douxx
7
7
  Author-email: douxx@douxx.tech
8
+ License: GPL-3.0-or-later
8
9
  Project-URL: Bug Reports, https://github.com/douxxtech/piwave/issues
9
10
  Project-URL: Source, https://github.com/douxxtech/piwave
10
11
  Keywords: raspberry pi,radio,fm,rds,streaming,audio,broadcast
12
+ Classifier: Development Status :: 5 - Production/Stable
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
11
15
  Classifier: Programming Language :: Python :: 3
12
16
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
13
17
  Classifier: Operating System :: POSIX :: Linux
14
18
  Requires-Python: >=3.7
15
19
  Description-Content-Type: text/markdown
16
20
  License-File: LICENSE
17
- Requires-Dist: pathlib
18
21
  Provides-Extra: dev
19
22
  Requires-Dist: pytest>=6.0; extra == "dev"
20
23
  Requires-Dist: pytest-cov>=2.0; extra == "dev"
21
24
  Requires-Dist: black>=22.0; extra == "dev"
22
25
  Requires-Dist: flake8>=4.0; extra == "dev"
23
- Dynamic: author
24
- Dynamic: author-email
25
- Dynamic: classifier
26
- Dynamic: description
27
- Dynamic: description-content-type
28
- Dynamic: home-page
29
- Dynamic: keywords
30
26
  Dynamic: license-file
31
- Dynamic: project-url
32
- Dynamic: provides-extra
33
- Dynamic: requires-dist
34
- Dynamic: requires-python
35
- Dynamic: summary
36
27
 
37
28
  <div align=center>
38
29
  <img alt="PiWave image" src="https://piwave.xyz/static/img/logo.png"/>
@@ -1,6 +1,7 @@
1
1
  LICENSE
2
2
  README.md
3
- setup.py
3
+ pyproject.toml
4
+ setup.cfg
4
5
  piwave/__init__.py
5
6
  piwave/piwave.py
6
7
  piwave.egg-info/PKG-INFO
@@ -1,4 +1,3 @@
1
- pathlib
2
1
 
3
2
  [dev]
4
3
  pytest>=6.0
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61", "wheel"]
3
+ build-backend = "setuptools.build_meta"
piwave-2.0.4/setup.cfg ADDED
@@ -0,0 +1,39 @@
1
+ [metadata]
2
+ name = piwave
3
+ version = 2.0.4
4
+ description = A python module to broadcast radio waves with your Raspberry Pi.
5
+ long_description = file: README.md
6
+ long_description_content_type = text/markdown
7
+ author = Douxx
8
+ author_email = douxx@douxx.tech
9
+ url = https://github.com/douxxtech/piwave
10
+ license = GPL-3.0-or-later
11
+ keywords = raspberry pi, radio, fm, rds, streaming, audio, broadcast
12
+ classifiers =
13
+ Development Status :: 5 - Production/Stable
14
+ Intended Audience :: Developers
15
+ Topic :: Software Development :: Libraries :: Python Modules
16
+ Programming Language :: Python :: 3
17
+ License :: OSI Approved :: GNU General Public License v3 (GPLv3)
18
+ Operating System :: POSIX :: Linux
19
+ project_urls =
20
+ Bug Reports = https://github.com/douxxtech/piwave/issues
21
+ Source = https://github.com/douxxtech/piwave
22
+
23
+ [options]
24
+ packages = find:
25
+ include_package_data = True
26
+ install_requires =
27
+ python_requires = >=3.7
28
+
29
+ [options.extras_require]
30
+ dev =
31
+ pytest>=6.0
32
+ pytest-cov>=2.0
33
+ black>=22.0
34
+ flake8>=4.0
35
+
36
+ [egg_info]
37
+ tag_build =
38
+ tag_date = 0
39
+
piwave-2.0.3/setup.cfg DELETED
@@ -1,4 +0,0 @@
1
- [egg_info]
2
- tag_build =
3
- tag_date = 0
4
-
piwave-2.0.3/setup.py DELETED
@@ -1,38 +0,0 @@
1
- # setup.py
2
-
3
- from setuptools import setup, find_packages
4
-
5
- setup(
6
- name="piwave",
7
- version="2.0.3",
8
- description="A python module to broacast radio waves with your Raspberry Pi.",
9
- long_description=open('README.md').read(),
10
- long_description_content_type='text/markdown',
11
- author="Douxx",
12
- author_email="douxx@douxx.tech",
13
- url="https://github.com/douxxtech/piwave",
14
- packages=find_packages(),
15
- include_package_data=True,
16
- install_requires=[
17
- "pathlib",
18
- ],
19
- extras_require={
20
- "dev": [
21
- "pytest>=6.0",
22
- "pytest-cov>=2.0",
23
- "black>=22.0",
24
- "flake8>=4.0",
25
- ],
26
- },
27
- classifiers=[
28
- "Programming Language :: Python :: 3",
29
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
30
- "Operating System :: POSIX :: Linux",
31
- ],
32
- python_requires='>=3.7',
33
- keywords="raspberry pi, radio, fm, rds, streaming, audio, broadcast",
34
- project_urls={
35
- "Bug Reports": "https://github.com/douxxtech/piwave/issues",
36
- "Source": "https://github.com/douxxtech/piwave",
37
- }
38
- )
File without changes
File without changes
File without changes
File without changes