biovlab 0.1.0__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.
- biovlab-0.1.0/PKG-INFO +20 -0
- biovlab-0.1.0/README.md +5 -0
- biovlab-0.1.0/biovlab/__init__.py +2 -0
- biovlab-0.1.0/biovlab.egg-info/PKG-INFO +20 -0
- biovlab-0.1.0/biovlab.egg-info/SOURCES.txt +7 -0
- biovlab-0.1.0/biovlab.egg-info/dependency_links.txt +1 -0
- biovlab-0.1.0/biovlab.egg-info/top_level.txt +1 -0
- biovlab-0.1.0/pyproject.toml +22 -0
- biovlab-0.1.0/setup.cfg +4 -0
biovlab-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: biovlab
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: BioVLAB: AI-powered biomedical research platform by AIGENDRUG
|
|
5
|
+
Author-email: AIGENDRUG <shulkhorn@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://drugvlab.com
|
|
8
|
+
Keywords: bioinformatics,AI,drug-discovery
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# BioVLAB
|
|
17
|
+
|
|
18
|
+
AI-powered biomedical research platform by AIGENDRUG.
|
|
19
|
+
|
|
20
|
+
Full SDK coming soon.
|
biovlab-0.1.0/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: biovlab
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: BioVLAB: AI-powered biomedical research platform by AIGENDRUG
|
|
5
|
+
Author-email: AIGENDRUG <shulkhorn@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://drugvlab.com
|
|
8
|
+
Keywords: bioinformatics,AI,drug-discovery
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# BioVLAB
|
|
17
|
+
|
|
18
|
+
AI-powered biomedical research platform by AIGENDRUG.
|
|
19
|
+
|
|
20
|
+
Full SDK coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
biovlab
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "biovlab"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "BioVLAB: AI-powered biomedical research platform by AIGENDRUG"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "AIGENDRUG", email = "shulkhorn@gmail.com" }]
|
|
12
|
+
keywords = ["bioinformatics", "AI", "drug-discovery"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
15
|
+
"Intended Audience :: Science/Research",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
requires-python = ">=3.8"
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://drugvlab.com"
|
biovlab-0.1.0/setup.cfg
ADDED