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.
@@ -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,8 @@
1
+ """
2
+ Pharmacon: Computational pharmacology tools.
3
+
4
+ This is a preliminary version reserved for an upcoming scientific release.
5
+ """
6
+ __version__ = "0.0.1"
7
+
8
+ from .core import cite
@@ -0,0 +1,7 @@
1
+ def cite() -> str:
2
+ """Return a citation notice for the forthcoming Pharmacon paper."""
3
+ return (
4
+ "Pharmacon (pre-release) — "
5
+ "A forthcoming library accompanying a scientific publication. "
6
+ "Full functionality will be added upon manuscript acceptance."
7
+ )
@@ -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,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ pharmacon/__init__.py
4
+ pharmacon/core.py
5
+ pharmacon.egg-info/PKG-INFO
6
+ pharmacon.egg-info/SOURCES.txt
7
+ pharmacon.egg-info/dependency_links.txt
8
+ pharmacon.egg-info/top_level.txt
@@ -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
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+