auto-editor 29.0.2__tar.gz → 29.0.3__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,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: auto-editor
3
- Version: 29.0.2
3
+ Version: 29.0.3
4
4
  Summary: Auto-Editor: Effort free video editing!
5
5
  Author-email: WyattBlue <wyattblue@auto-editor.com>
6
6
  License-Expression: Unlicense
7
- Project-URL: Bug Tracker, https://github.com/WyattBlue/auto-editor/issues
7
+ Project-URL: Bug Tracker, https://github.com/WyattBlue/auto-editor/discussions
8
8
  Project-URL: Source Code, https://github.com/WyattBlue/auto-editor
9
9
  Project-URL: homepage, https://auto-editor.com
10
10
  Keywords: video,audio,media,editor,editing,processing,nonlinear,automatic,silence-detect,silence-removal,silence-speedup,motion-detection
11
- Requires-Python: >=3.10
11
+ Requires-Python: >=3.9
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Dynamic: license-file
@@ -0,0 +1 @@
1
+ __version__ = "29.0.3"
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: auto-editor
3
- Version: 29.0.2
3
+ Version: 29.0.3
4
4
  Summary: Auto-Editor: Effort free video editing!
5
5
  Author-email: WyattBlue <wyattblue@auto-editor.com>
6
6
  License-Expression: Unlicense
7
- Project-URL: Bug Tracker, https://github.com/WyattBlue/auto-editor/issues
7
+ Project-URL: Bug Tracker, https://github.com/WyattBlue/auto-editor/discussions
8
8
  Project-URL: Source Code, https://github.com/WyattBlue/auto-editor
9
9
  Project-URL: homepage, https://auto-editor.com
10
10
  Keywords: video,audio,media,editor,editing,processing,nonlinear,automatic,silence-detect,silence-removal,silence-speedup,motion-detection
11
- Requires-Python: >=3.10
11
+ Requires-Python: >=3.9
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Dynamic: license-file
@@ -3,7 +3,6 @@ README.md
3
3
  pyproject.toml
4
4
  auto_editor/__init__.py
5
5
  auto_editor/__main__.py
6
- auto_editor/cli.py
7
6
  auto_editor.egg-info/PKG-INFO
8
7
  auto_editor.egg-info/SOURCES.txt
9
8
  auto_editor.egg-info/dependency_links.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ auto-editor = auto_editor.__main__:main
@@ -1,15 +1,14 @@
1
1
  [build-system]
2
- requires = ["setuptools>=77", "wheel"]
3
- build-backend = "setuptools.build_meta"
2
+ requires = ["setuptools>=77"]
4
3
 
5
4
  [project]
6
5
  name = "auto-editor"
7
- version = "29.0.2"
6
+ version = "29.0.3"
8
7
  description = "Auto-Editor: Effort free video editing!"
9
8
  readme = "README.md"
10
9
  license = "Unlicense"
11
10
  authors = [{ name = "WyattBlue", email = "wyattblue@auto-editor.com" }]
12
- requires-python = ">=3.10"
11
+ requires-python = ">=3.9"
13
12
  dependencies = []
14
13
  keywords = [
15
14
  "video", "audio", "media", "editor", "editing",
@@ -18,13 +17,13 @@ keywords = [
18
17
  ]
19
18
 
20
19
  [project.scripts]
21
- auto-editor = "auto_editor.cli:cli"
20
+ auto-editor = "auto_editor.__main__:main"
22
21
 
23
22
  [tool.setuptools.packages.find]
24
23
  include = ["auto_editor*"]
25
24
 
26
25
  [project.urls]
27
- "Bug Tracker" = "https://github.com/WyattBlue/auto-editor/issues"
26
+ "Bug Tracker" = "https://github.com/WyattBlue/auto-editor/discussions"
28
27
  "Source Code" = "https://github.com/WyattBlue/auto-editor"
29
28
  homepage = "https://auto-editor.com"
30
29
 
@@ -1 +0,0 @@
1
- __version__ = "29.0.2"
@@ -1,4 +0,0 @@
1
- from auto_editor.__main__ import main
2
-
3
- if __name__ == "__main__":
4
- main()
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- auto-editor = auto_editor.cli:cli
File without changes
File without changes
File without changes
File without changes