yta-core 0.0.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- yta_core-0.0.1/PKG-INFO +17 -0
- yta_core-0.0.1/README.md +3 -0
- yta_core-0.0.1/setup.cfg +4 -0
- yta_core-0.0.1/setup.py +31 -0
- yta_core-0.0.1/yta_core/__init__.py +12 -0
- yta_core-0.0.1/yta_core.egg-info/PKG-INFO +17 -0
- yta_core-0.0.1/yta_core.egg-info/SOURCES.txt +8 -0
- yta_core-0.0.1/yta_core.egg-info/dependency_links.txt +1 -0
- yta_core-0.0.1/yta_core.egg-info/requires.txt +1 -0
- yta_core-0.0.1/yta_core.egg-info/top_level.txt +1 -0
yta_core-0.0.1/PKG-INFO
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
Metadata-Version: 1.1
|
2
|
+
Name: yta_core
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: Youtube Autonomous Core
|
5
|
+
Home-page: UNKNOWN
|
6
|
+
Author: Daniel Alcalá
|
7
|
+
Author-email: <danielalcalavalera@gmail.com>
|
8
|
+
License: UNKNOWN
|
9
|
+
Description: Youtube Autonomous Core - where the magic happens.
|
10
|
+
Keywords: youtube autonomous core
|
11
|
+
Platform: UNKNOWN
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
13
|
+
Classifier: Intended Audience :: Education
|
14
|
+
Classifier: Programming Language :: Python :: 2
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
16
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
17
|
+
Classifier: Operating System :: Microsoft :: Windows
|
yta_core-0.0.1/README.md
ADDED
yta_core-0.0.1/setup.cfg
ADDED
yta_core-0.0.1/setup.py
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
from setuptools import setup, find_packages
|
2
|
+
|
3
|
+
|
4
|
+
VERSION = '0.0.1'
|
5
|
+
DESCRIPTION = 'Youtube Autonomous Core'
|
6
|
+
LONG_DESCRIPTION = 'Youtube Autonomous Core - where the magic happens.'
|
7
|
+
|
8
|
+
setup(
|
9
|
+
name = "yta_core",
|
10
|
+
version = VERSION,
|
11
|
+
author = "Daniel Alcalá",
|
12
|
+
author_email = "<danielalcalavalera@gmail.com>",
|
13
|
+
description = DESCRIPTION,
|
14
|
+
long_description = LONG_DESCRIPTION,
|
15
|
+
packages = find_packages(),
|
16
|
+
install_requires = [
|
17
|
+
'yta_general_utils'
|
18
|
+
],
|
19
|
+
|
20
|
+
keywords = [
|
21
|
+
'youtube autonomous core',
|
22
|
+
],
|
23
|
+
classifiers = [
|
24
|
+
"Development Status :: 3 - Alpha",
|
25
|
+
"Intended Audience :: Education",
|
26
|
+
"Programming Language :: Python :: 2",
|
27
|
+
"Programming Language :: Python :: 3",
|
28
|
+
"Operating System :: MacOS :: MacOS X",
|
29
|
+
"Operating System :: Microsoft :: Windows",
|
30
|
+
]
|
31
|
+
)
|
@@ -0,0 +1,12 @@
|
|
1
|
+
"""
|
2
|
+
This library is the core of Youtube Autonomous,
|
3
|
+
where all the functionalities are joint and the
|
4
|
+
magic can happen.
|
5
|
+
|
6
|
+
This library manages whole projects and is
|
7
|
+
capable of creating awesome videos from scratch.
|
8
|
+
Using AI, video effects, audio narrations and
|
9
|
+
many more things that you'll discover inside.
|
10
|
+
|
11
|
+
- The wizard: danielalcalavalera@gmail.com
|
12
|
+
"""
|
@@ -0,0 +1,17 @@
|
|
1
|
+
Metadata-Version: 1.1
|
2
|
+
Name: yta-core
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: Youtube Autonomous Core
|
5
|
+
Home-page: UNKNOWN
|
6
|
+
Author: Daniel Alcalá
|
7
|
+
Author-email: <danielalcalavalera@gmail.com>
|
8
|
+
License: UNKNOWN
|
9
|
+
Description: Youtube Autonomous Core - where the magic happens.
|
10
|
+
Keywords: youtube autonomous core
|
11
|
+
Platform: UNKNOWN
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
13
|
+
Classifier: Intended Audience :: Education
|
14
|
+
Classifier: Programming Language :: Python :: 2
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
16
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
17
|
+
Classifier: Operating System :: Microsoft :: Windows
|
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
yta_general_utils
|
@@ -0,0 +1 @@
|
|
1
|
+
yta_core
|