cloneai 1.0.0__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.
- cloneai-1.0.0/LICENSE +11 -0
- cloneai-1.0.0/PKG-INFO +17 -0
- cloneai-1.0.0/README.md +3 -0
- cloneai-1.0.0/cloneai/__init__.py +0 -0
- cloneai-1.0.0/cloneai.egg-info/PKG-INFO +17 -0
- cloneai-1.0.0/cloneai.egg-info/SOURCES.txt +8 -0
- cloneai-1.0.0/cloneai.egg-info/dependency_links.txt +1 -0
- cloneai-1.0.0/cloneai.egg-info/top_level.txt +1 -0
- cloneai-1.0.0/pyproject.toml +23 -0
- cloneai-1.0.0/setup.cfg +4 -0
cloneai-1.0.0/LICENSE
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
All Rights Reserved
|
2
|
+
|
3
|
+
Copyright (c) 2025-Present Justin Silver
|
4
|
+
|
5
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
6
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
7
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
8
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
9
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
10
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
11
|
+
THE SOFTWARE.
|
cloneai-1.0.0/PKG-INFO
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: cloneai
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: Voice cloning bot - work not released yet
|
5
|
+
Author: Justin Silver
|
6
|
+
License-Expression: LicenseRef-Proprietary
|
7
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
9
|
+
Classifier: Operating System :: Unix
|
10
|
+
Requires-Python: >=3.10
|
11
|
+
Description-Content-Type: text/markdown
|
12
|
+
License-File: LICENSE
|
13
|
+
Dynamic: license-file
|
14
|
+
|
15
|
+
# CloneAI
|
16
|
+
|
17
|
+
Voice cloning bot - work not released yet
|
cloneai-1.0.0/README.md
ADDED
File without changes
|
@@ -0,0 +1,17 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: cloneai
|
3
|
+
Version: 1.0.0
|
4
|
+
Summary: Voice cloning bot - work not released yet
|
5
|
+
Author: Justin Silver
|
6
|
+
License-Expression: LicenseRef-Proprietary
|
7
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
9
|
+
Classifier: Operating System :: Unix
|
10
|
+
Requires-Python: >=3.10
|
11
|
+
Description-Content-Type: text/markdown
|
12
|
+
License-File: LICENSE
|
13
|
+
Dynamic: license-file
|
14
|
+
|
15
|
+
# CloneAI
|
16
|
+
|
17
|
+
Voice cloning bot - work not released yet
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
cloneai
|
@@ -0,0 +1,23 @@
|
|
1
|
+
[build-system]
|
2
|
+
requires = ["setuptools >= 77.0.3"]
|
3
|
+
build-backend = "setuptools.build_meta"
|
4
|
+
|
5
|
+
[project]
|
6
|
+
name = "cloneai"
|
7
|
+
version = "1.0.0"
|
8
|
+
authors = [ { name = "Justin Silver" } ]
|
9
|
+
description = "Voice cloning bot - work not released yet"
|
10
|
+
readme = "README.md"
|
11
|
+
requires-python = ">=3.10"
|
12
|
+
|
13
|
+
classifiers = [
|
14
|
+
"Programming Language :: Python :: 3 :: Only",
|
15
|
+
"Programming Language :: Python :: 3.10",
|
16
|
+
"Operating System :: Unix",
|
17
|
+
]
|
18
|
+
|
19
|
+
license = "LicenseRef-Proprietary"
|
20
|
+
license-files = ["LICEN[CS]E*"]
|
21
|
+
|
22
|
+
[tool.setuptools.packages]
|
23
|
+
find = {namespaces = false} # Disable implicit namespaces
|
cloneai-1.0.0/setup.cfg
ADDED