aifilm 0.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.
- aifilm-0.0.1/PKG-INFO +21 -0
- aifilm-0.0.1/README.md +7 -0
- aifilm-0.0.1/pyproject.toml +24 -0
- aifilm-0.0.1/setup.cfg +4 -0
- aifilm-0.0.1/src/aifilm/__init__.py +3 -0
- aifilm-0.0.1/src/aifilm.egg-info/PKG-INFO +21 -0
- aifilm-0.0.1/src/aifilm.egg-info/SOURCES.txt +7 -0
- aifilm-0.0.1/src/aifilm.egg-info/dependency_links.txt +1 -0
- aifilm-0.0.1/src/aifilm.egg-info/top_level.txt +1 -0
aifilm-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aifilm
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved namespace for PraisonAI. Not yet implemented.
|
|
5
|
+
Author-email: Mervin Praison <mervin@praison.ai>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/MervinPraison/praisonai-film
|
|
8
|
+
Project-URL: Repository, https://github.com/MervinPraison/praisonai-film
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# aifilm
|
|
16
|
+
|
|
17
|
+
Reserved PyPI package name for the PraisonAI film project.
|
|
18
|
+
|
|
19
|
+
This placeholder release holds the namespace only. Implementation will ship in a future version.
|
|
20
|
+
|
|
21
|
+
- Repository: https://github.com/MervinPraison/praisonai-film
|
aifilm-0.0.1/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "aifilm"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved namespace for PraisonAI. Not yet implemented."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Mervin Praison", email = "mervin@praison.ai" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://github.com/MervinPraison/praisonai-film"
|
|
21
|
+
Repository = "https://github.com/MervinPraison/praisonai-film"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.packages.find]
|
|
24
|
+
where = ["src"]
|
aifilm-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aifilm
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved namespace for PraisonAI. Not yet implemented.
|
|
5
|
+
Author-email: Mervin Praison <mervin@praison.ai>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/MervinPraison/praisonai-film
|
|
8
|
+
Project-URL: Repository, https://github.com/MervinPraison/praisonai-film
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# aifilm
|
|
16
|
+
|
|
17
|
+
Reserved PyPI package name for the PraisonAI film project.
|
|
18
|
+
|
|
19
|
+
This placeholder release holds the namespace only. Implementation will ship in a future version.
|
|
20
|
+
|
|
21
|
+
- Repository: https://github.com/MervinPraison/praisonai-film
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
aifilm
|