pharmacon 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.
- pharmacon-0.0.1/PKG-INFO +24 -0
- pharmacon-0.0.1/README.md +11 -0
- pharmacon-0.0.1/pharmacon/__init__.py +8 -0
- pharmacon-0.0.1/pharmacon/core.py +7 -0
- pharmacon-0.0.1/pharmacon.egg-info/PKG-INFO +24 -0
- pharmacon-0.0.1/pharmacon.egg-info/SOURCES.txt +8 -0
- pharmacon-0.0.1/pharmacon.egg-info/dependency_links.txt +1 -0
- pharmacon-0.0.1/pharmacon.egg-info/top_level.txt +1 -0
- pharmacon-0.0.1/pyproject.toml +20 -0
- pharmacon-0.0.1/setup.cfg +4 -0
pharmacon-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pharmacon
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Computational pharmacology utilities (pre-release).
|
|
5
|
+
Author-email: Kyriakos Georgiou <cocadds@pharm.uoa.gr>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
8
|
+
Classifier: Intended Audience :: Science/Research
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Pharmacon
|
|
15
|
+
|
|
16
|
+
**Pharmacon** is a forthcoming Python library for computational pharmacology and cheminformatics.
|
|
17
|
+
|
|
18
|
+
This package currently serves as a lightweight pre-release to reserve the project name until the
|
|
19
|
+
corresponding manuscript is published.
|
|
20
|
+
|
|
21
|
+
Install:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install pharmacon
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Pharmacon
|
|
2
|
+
|
|
3
|
+
**Pharmacon** is a forthcoming Python library for computational pharmacology and cheminformatics.
|
|
4
|
+
|
|
5
|
+
This package currently serves as a lightweight pre-release to reserve the project name until the
|
|
6
|
+
corresponding manuscript is published.
|
|
7
|
+
|
|
8
|
+
Install:
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install pharmacon
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pharmacon
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Computational pharmacology utilities (pre-release).
|
|
5
|
+
Author-email: Kyriakos Georgiou <cocadds@pharm.uoa.gr>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
8
|
+
Classifier: Intended Audience :: Science/Research
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Pharmacon
|
|
15
|
+
|
|
16
|
+
**Pharmacon** is a forthcoming Python library for computational pharmacology and cheminformatics.
|
|
17
|
+
|
|
18
|
+
This package currently serves as a lightweight pre-release to reserve the project name until the
|
|
19
|
+
corresponding manuscript is published.
|
|
20
|
+
|
|
21
|
+
Install:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install pharmacon
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pharmacon
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pharmacon"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name = "Kyriakos Georgiou", email = "cocadds@pharm.uoa.gr" }
|
|
10
|
+
]
|
|
11
|
+
description = "Computational pharmacology utilities (pre-release)."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
license = { text = "MIT" }
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
17
|
+
"Intended Audience :: Science/Research",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Scientific/Engineering :: Bio-Informatics",
|
|
20
|
+
]
|