abdocode 2.0.0__tar.gz → 2.0.1__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abdocode
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: A Python utility library for keyboard shortcuts, file tools, audio helpers and workflow utilities
5
5
  Author-email: Abdalla Emad <19abdo9123@gmail.com>
6
6
  License: MIT
@@ -13,9 +13,16 @@ Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: numpy
15
15
  Requires-Dist: sounddevice
16
+ Requires-Dist: simpleaudio
17
+ Provides-Extra: audio
18
+ Requires-Dist: simpleaudio>=1.1.10; extra == "audio"
19
+ Provides-Extra: dev
20
+ Requires-Dist: pytest>=6.0; extra == "dev"
21
+ Requires-Dist: black>=21.0; extra == "dev"
22
+ Requires-Dist: pylint>=2.0; extra == "dev"
16
23
  Dynamic: license-file
17
24
 
18
- # ============/Abdo☆code\===============
25
+ # ============Abdo☆code===============
19
26
 
20
27
  مكتبة `abdocode` توفر أدوات مساعدة قوية لتطبيقات بايثون، خاصة العمليات المرتبطة بالاختصارات، إدارة الملفات، الصوت، والمزيد.
21
28
 
@@ -1,4 +1,4 @@
1
- # ============/Abdo☆code\===============
1
+ # ============Abdo☆code===============
2
2
 
3
3
  مكتبة `abdocode` توفر أدوات مساعدة قوية لتطبيقات بايثون، خاصة العمليات المرتبطة بالاختصارات، إدارة الملفات، الصوت، والمزيد.
4
4
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abdocode
3
- Version: 2.0.0
3
+ Version: 2.0.1
4
4
  Summary: A Python utility library for keyboard shortcuts, file tools, audio helpers and workflow utilities
5
5
  Author-email: Abdalla Emad <19abdo9123@gmail.com>
6
6
  License: MIT
@@ -13,9 +13,16 @@ Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: numpy
15
15
  Requires-Dist: sounddevice
16
+ Requires-Dist: simpleaudio
17
+ Provides-Extra: audio
18
+ Requires-Dist: simpleaudio>=1.1.10; extra == "audio"
19
+ Provides-Extra: dev
20
+ Requires-Dist: pytest>=6.0; extra == "dev"
21
+ Requires-Dist: black>=21.0; extra == "dev"
22
+ Requires-Dist: pylint>=2.0; extra == "dev"
16
23
  Dynamic: license-file
17
24
 
18
- # ============/Abdo☆code\===============
25
+ # ============Abdo☆code===============
19
26
 
20
27
  مكتبة `abdocode` توفر أدوات مساعدة قوية لتطبيقات بايثون، خاصة العمليات المرتبطة بالاختصارات، إدارة الملفات، الصوت، والمزيد.
21
28
 
@@ -0,0 +1,11 @@
1
+ numpy
2
+ sounddevice
3
+ simpleaudio
4
+
5
+ [audio]
6
+ simpleaudio>=1.1.10
7
+
8
+ [dev]
9
+ pytest>=6.0
10
+ black>=21.0
11
+ pylint>=2.0
@@ -4,11 +4,13 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "abdocode"
7
- version = "2.0.0"
7
+ version = "2.0.1"
8
8
  description = "A Python utility library for keyboard shortcuts, file tools, audio helpers and workflow utilities"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.6"
11
- license = {text = "MIT"}
11
+
12
+ license = { text = "MIT" }
13
+
12
14
  keywords = ["hotkey", "utility", "audio", "workflow", "tkinter"]
13
15
 
14
16
  authors = [
@@ -16,12 +18,23 @@ authors = [
16
18
  ]
17
19
 
18
20
  dependencies = [
19
- "numpy",
20
- "sounddevice"
21
+ "numpy",
22
+ "sounddevice",
23
+ "simpleaudio"
21
24
  ]
22
25
 
23
26
  classifiers = [
24
27
  "Programming Language :: Python :: 3",
25
28
  "License :: OSI Approved :: MIT License",
26
- "Operating System :: OS Independent",
29
+ "Operating System :: OS Independent"
30
+ ]
31
+
32
+ [project.optional-dependencies]
33
+ audio = [
34
+ "simpleaudio>=1.1.10"
27
35
  ]
36
+ dev = [
37
+ "pytest>=6.0",
38
+ "black>=21.0",
39
+ "pylint>=2.0"
40
+ ]
@@ -1,2 +0,0 @@
1
- numpy
2
- sounddevice
File without changes
File without changes
File without changes