hjxdl 0.0.5__tar.gz → 0.0.6.dev1__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.
- {hjxdl-0.0.5/hjxdl.egg-info → hjxdl-0.0.6.dev1}/PKG-INFO +2 -1
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/_version.py +2 -2
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1/hjxdl.egg-info}/PKG-INFO +2 -1
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hjxdl.egg-info/SOURCES.txt +2 -0
- hjxdl-0.0.6.dev1/hjxdl.egg-info/requires.txt +1 -0
- hjxdl-0.0.6.dev1/requirements.txt +1 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/setup.py +10 -1
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/.github/workflows/python-publish.yml +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/.gitignore +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/.gitmodules +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/MANIFEST.in +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/README.md +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/args/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/args/loss_args.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/al/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/al/al.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/al/dispatcher.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/al/feedback.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/explain/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/explain/shapley.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/explain/subgraphx.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/predictors/gin_predictor.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/predictors/rxn_predictor.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/predictors/torch_predictor.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/train/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/train/rxn_train.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/train/train.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/train/train_ginet.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/train/trainer_base.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/controllers/train/trainer_iterative.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/base_dataset.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/fp/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/fp/fp_dataset.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/graph/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/graph/chiral.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/graph/gin.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/graph/molnet.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/loaders/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/loaders/chiral_graph.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/loaders/collate_funcs/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/loaders/collate_funcs/fp.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/loaders/collate_funcs/rxn.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/loaders/general.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/loaders/spliter.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/samplers/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/samplers/chiral.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/seq/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/seq/rxn_dataset.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/dataset/utils.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/data/to_mols.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/features/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/features/fp/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/features/fp/features_generators.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/features/graph/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/features/graph/featurization.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/features/utils/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/features/utils/utils.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/features/vocab.txt +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/include/add2.h +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/kernel/add2_kernel.cu +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/kernel/test +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/kernel/test.cu +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/general/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/general/gp.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/general/linear.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/graph/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/graph/chiral_graph.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/graph/gcn.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/graph/gin.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/graph/tetra.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/graph/transformer.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/layers/sequential/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/metric_loss/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/metric_loss/loss.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/metric_loss/metric.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/metric_loss/multi_label.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/metric_loss/nt_xent.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/chiral_gnn.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/fast_transformer.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/ginet.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/linear.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/model_dict.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/norm_flows.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/optim_dict.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/rxn.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/models/utils.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/ops/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/ops/utils.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/optims/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/optims/nadam.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/pytorch/add2_ops.cpp +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/chemical_tools/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/chemical_tools/query_info.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/chemical_tools/sdf.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/database_tools/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/database_tools/connect.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/general/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/general/glob.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/llm/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/llm/chat.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/schedulers/__init__.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hdl/utils/schedulers/norm_lr.py +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hjxdl.egg-info/dependency_links.txt +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/hjxdl.egg-info/top_level.txt +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/pyproject.toml +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/setup.cfg +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/update_main.sh +0 -0
- {hjxdl-0.0.5 → hjxdl-0.0.6.dev1}/version.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: hjxdl
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.6.dev1
|
4
4
|
Summary: A collection of functions for Jupyter notebooks
|
5
5
|
Home-page: https://github.com/huluxiaohuowa/hdl
|
6
6
|
Author: Jianxing Hu
|
@@ -10,6 +10,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Requires-Python: >=3.6
|
12
12
|
Description-Content-Type: text/markdown
|
13
|
+
Requires-Dist: jupyfuncs
|
13
14
|
|
14
15
|
# DL framework by Jianxing
|
15
16
|
|
@@ -12,5 +12,5 @@ __version__: str
|
|
12
12
|
__version_tuple__: VERSION_TUPLE
|
13
13
|
version_tuple: VERSION_TUPLE
|
14
14
|
|
15
|
-
__version__ = version = '0.0.
|
16
|
-
__version_tuple__ = version_tuple = (0, 0,
|
15
|
+
__version__ = version = '0.0.6.dev1'
|
16
|
+
__version_tuple__ = version_tuple = (0, 0, 6, 'dev1')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: hjxdl
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.6.dev1
|
4
4
|
Summary: A collection of functions for Jupyter notebooks
|
5
5
|
Home-page: https://github.com/huluxiaohuowa/hdl
|
6
6
|
Author: Jianxing Hu
|
@@ -10,6 +10,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Requires-Python: >=3.6
|
12
12
|
Description-Content-Type: text/markdown
|
13
|
+
Requires-Dist: jupyfuncs
|
13
14
|
|
14
15
|
# DL framework by Jianxing
|
15
16
|
|
@@ -4,6 +4,7 @@ MANIFEST.in
|
|
4
4
|
README.md
|
5
5
|
__init__.py
|
6
6
|
pyproject.toml
|
7
|
+
requirements.txt
|
7
8
|
setup.py
|
8
9
|
update_main.sh
|
9
10
|
version.txt
|
@@ -109,4 +110,5 @@ hdl/utils/schedulers/norm_lr.py
|
|
109
110
|
hjxdl.egg-info/PKG-INFO
|
110
111
|
hjxdl.egg-info/SOURCES.txt
|
111
112
|
hjxdl.egg-info/dependency_links.txt
|
113
|
+
hjxdl.egg-info/requires.txt
|
112
114
|
hjxdl.egg-info/top_level.txt
|
@@ -0,0 +1 @@
|
|
1
|
+
jupyfuncs
|
@@ -0,0 +1 @@
|
|
1
|
+
jupyfuncs
|
@@ -1,6 +1,14 @@
|
|
1
1
|
from setuptools import setup, find_packages
|
2
2
|
import setuptools_scm
|
3
3
|
|
4
|
+
def read_requirements():
|
5
|
+
"""读取 requirements.txt 文件并返回依赖列表"""
|
6
|
+
with open('requirements.txt', 'r', encoding='utf-8') as file:
|
7
|
+
return [
|
8
|
+
line.strip()
|
9
|
+
for line in file
|
10
|
+
if line.strip() and not line.startswith('#')
|
11
|
+
]
|
4
12
|
|
5
13
|
def custom_version_scheme(version):
|
6
14
|
"""自定义版本号方案,确保没有 .dev 后缀"""
|
@@ -35,5 +43,6 @@ setup(
|
|
35
43
|
"Operating System :: OS Independent",
|
36
44
|
],
|
37
45
|
python_requires='>=3.6',
|
38
|
-
setup_requires=['setuptools_scm']
|
46
|
+
setup_requires=['setuptools_scm'],
|
47
|
+
install_requires=read_requirements()
|
39
48
|
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|