skillnet-ai 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.
- skillnet_ai-0.0.1/PKG-INFO +20 -0
- skillnet_ai-0.0.1/README.md +7 -0
- skillnet_ai-0.0.1/setup.cfg +4 -0
- skillnet_ai-0.0.1/setup.py +20 -0
- skillnet_ai-0.0.1/src/skillnet_ai/__init__.py +0 -0
- skillnet_ai-0.0.1/src/skillnet_ai.egg-info/PKG-INFO +20 -0
- skillnet_ai-0.0.1/src/skillnet_ai.egg-info/SOURCES.txt +7 -0
- skillnet_ai-0.0.1/src/skillnet_ai.egg-info/dependency_links.txt +1 -0
- skillnet_ai-0.0.1/src/skillnet_ai.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: skillnet-ai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A placeholder for the Skillnet AI library.
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: liangyuan
|
|
7
|
+
Author-email: liangyuannnnn@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Skillnet AI
|
|
15
|
+
|
|
16
|
+
This is a package for the **Skillnet** project.
|
|
17
|
+
The official release is coming soon.
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
(Currently empty)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="skillnet-ai",
|
|
5
|
+
version="0.0.1",
|
|
6
|
+
author="liangyuan",
|
|
7
|
+
author_email="liangyuannnnn@gmail.com",
|
|
8
|
+
description="A placeholder for the Skillnet AI library.",
|
|
9
|
+
long_description=open("README.md").read(),
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
url="",
|
|
12
|
+
packages=find_packages(where="src"),
|
|
13
|
+
package_dir={"": "src"},
|
|
14
|
+
classifiers=[
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Operating System :: OS Independent",
|
|
18
|
+
],
|
|
19
|
+
python_requires='>=3.6',
|
|
20
|
+
)
|
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: skillnet-ai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A placeholder for the Skillnet AI library.
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: liangyuan
|
|
7
|
+
Author-email: liangyuannnnn@gmail.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Skillnet AI
|
|
15
|
+
|
|
16
|
+
This is a package for the **Skillnet** project.
|
|
17
|
+
The official release is coming soon.
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
(Currently empty)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
skillnet_ai
|