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.
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deepKernel
3
- Version: 0.0.3
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 :: MIT License
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
@@ -0,0 +1,4 @@
1
+ import os,sys
2
+ package_root = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
3
+ if package_root not in sys.path:
4
+ sys.path.insert(0, package_root)
@@ -1,6 +1,5 @@
1
- import deepline
2
- import json,operator
3
- import math
1
+ from deepKernel import deepline
2
+ import json
4
3
 
5
4
  def _init():
6
5
  global _global_dict
@@ -0,0 +1,5 @@
1
+ from deepKernel import deepline,base
2
+
3
+ def init(path:str):
4
+ deepline.init(path)
5
+ base.set_config_path(path)
@@ -1,5 +1,5 @@
1
- import os, sys, json, math
2
- import deepline, base
1
+ import json
2
+ from deepKernel import base
3
3
 
4
4
  #打开料号
5
5
  def open_job(job:str, path:str)->bool:
@@ -1,5 +1,5 @@
1
- import deepline,base
2
- import os, sys, json
1
+ from deepKernel import base
2
+ import json
3
3
 
4
4
 
5
5
  #打开料号
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deepKernel
3
- Version: 0.0.3
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 :: MIT License
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.3", # Initial version number
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 :: MIT License", # Ensure this matches your LICENSE file
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
@@ -1,6 +0,0 @@
1
- import deepline,base
2
- import os, sys, json,requests,time
3
-
4
- def init(path:str):
5
- deepline.init(path)
6
- base.set_config_path(path)
File without changes
File without changes
File without changes