deepKernel 0.0.3__tar.gz → 0.0.5__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.
- {deepkernel-0.0.3 → deepkernel-0.0.5}/PKG-INFO +2 -2
- deepkernel-0.0.5/deepKernel/__init__.py +4 -0
- {deepkernel-0.0.3 → deepkernel-0.0.5}/deepKernel/base.py +2 -3
- deepkernel-0.0.5/deepKernel/configuration.py +5 -0
- {deepkernel-0.0.3 → deepkernel-0.0.5}/deepKernel/information.py +2 -2
- {deepkernel-0.0.3 → deepkernel-0.0.5}/deepKernel/input.py +2 -2
- {deepkernel-0.0.3 → deepkernel-0.0.5}/deepKernel.egg-info/PKG-INFO +2 -2
- {deepkernel-0.0.3 → deepkernel-0.0.5}/setup.py +4 -4
- deepkernel-0.0.3/deepKernel/__init__.py +0 -1
- deepkernel-0.0.3/deepKernel/configuration.py +0 -6
- {deepkernel-0.0.3 → deepkernel-0.0.5}/LICENSE +0 -0
- {deepkernel-0.0.3 → deepkernel-0.0.5}/README.md +0 -0
- {deepkernel-0.0.3 → deepkernel-0.0.5}/deepKernel/deepline.py +0 -0
- {deepkernel-0.0.3 → deepkernel-0.0.5}/deepKernel.egg-info/SOURCES.txt +0 -0
- {deepkernel-0.0.3 → deepkernel-0.0.5}/deepKernel.egg-info/dependency_links.txt +0 -0
- {deepkernel-0.0.3 → deepkernel-0.0.5}/deepKernel.egg-info/top_level.txt +0 -0
- {deepkernel-0.0.3 → deepkernel-0.0.5}/setup.cfg +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: deepKernel
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: A simple example package
|
|
5
5
|
Home-page: https://www.pzeda.com/CN
|
|
6
6
|
Author: pz
|
|
7
7
|
Author-email: meichiyuan@pzeda.com
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: License :: OSI Approved ::
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.6
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: deepKernel
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: A simple example package
|
|
5
5
|
Home-page: https://www.pzeda.com/CN
|
|
6
6
|
Author: pz
|
|
7
7
|
Author-email: meichiyuan@pzeda.com
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
|
-
Classifier: License :: OSI Approved ::
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Requires-Python: >=3.6
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
@@ -6,21 +6,21 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
6
6
|
|
|
7
7
|
setuptools.setup(
|
|
8
8
|
name="deepKernel", # Replace with your desired PyPI package name (must be unique)
|
|
9
|
-
version="0.0.
|
|
9
|
+
version="0.0.5", # Initial version number
|
|
10
10
|
author="pz", # Replace with your name
|
|
11
11
|
author_email="meichiyuan@pzeda.com", # Replace with your email
|
|
12
12
|
description="A simple example package", # Short description
|
|
13
13
|
long_description=long_description, # Use README.md as long description
|
|
14
14
|
long_description_content_type="text/markdown", # Format of long description
|
|
15
15
|
url="https://www.pzeda.com/CN", # Replace with your package's URL (e.g., GitHub repo)
|
|
16
|
-
packages=setuptools.find_packages(), # Automatically find package directories (will find /)
|
|
16
|
+
packages=setuptools.find_packages(), # Automatically find package directories (will find zephyrzhong/)
|
|
17
17
|
classifiers=[ # Package classifiers
|
|
18
18
|
"Programming Language :: Python :: 3",
|
|
19
|
-
"License :: OSI Approved ::
|
|
19
|
+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", # Ensure this matches your LICENSE file
|
|
20
20
|
"Operating System :: OS Independent",
|
|
21
21
|
],
|
|
22
22
|
python_requires='>=3.6', # Specify compatible Python versions
|
|
23
23
|
# install_requires=[ # List dependencies here if any
|
|
24
24
|
# 'requests>=2.20.0',
|
|
25
25
|
# ],
|
|
26
|
-
)
|
|
26
|
+
)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import deepline
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|