cosmopharm 0.0.15__py3-none-any.whl → 0.0.16__py3-none-any.whl

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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cosmopharm
3
- Version: 0.0.15
3
+ Version: 0.0.16
4
4
  Summary: Predictive modeling for drug-polymer compatibility in pharmaceutical formulations using COSMO-SAC.
5
5
  Home-page: https://github.com/ivanantolo/cosmopharm,
6
6
  Author: Ivan Antolovic
@@ -27,7 +27,7 @@ Classifier: Programming Language :: Python :: 3.11
27
27
  Classifier: Programming Language :: Python :: 3.12
28
28
  Classifier: Programming Language :: Python :: 3.13
29
29
  Requires-Python: >=3.8
30
- Description-Content-Type: text/x-rst
30
+ Description-Content-Type: text/markdown
31
31
  License-File: LICENSE
32
32
  Requires-Dist: matplotlib >=3.0
33
33
  Requires-Dist: numpy >=1.15
@@ -35,103 +35,103 @@ Requires-Dist: pandas >=1.0
35
35
  Requires-Dist: scipy >=1.4
36
36
  Requires-Dist: openpyxl >=3.0
37
37
 
38
- COSMOPharm
39
- ==========
38
+ # COSMOPharm
40
39
 
41
- .. figure:: https://github.com/ivanantolo/cosmopharm/raw/main/TOC.png
42
- .. figure:: https://raw.githubusercontent.com/greyli/flask-share/master/images/demo.png
43
- .. figure:: https://raw.githubusercontent.com/ivanantolo/cosmopharm/main/TOC.png?token=GHSAT0AAAAAACNWSMKQUALUW3VUS5JEJYH2ZPUJK4A
40
+ <p align="center">
41
+ <img src="TOC.png" alt="TOC Figure" width="400"/>
42
+ </p>
44
43
 
45
- Welcome to the COSMOPharm repository, accompanying `our paper in J. Chem. Theory Comput. <https://dx.doi.org/10.1021/acs.jctc.9b01016>`_. This project and its associated publication offer insights and a practical toolkit for researching drug-polymer and drug-solvent systems, aiming to provide the scientific community with the means to reproduce our findings and further the development of COSMO-SAC-based models.
44
+ ![](https://github.com/ivanantolo/cosmopharm/raw/main/TOC.png)
45
+ ![](https://github.com/ivanantolo/cosmopharm/blob/main/TOC.png?raw=True)
46
46
 
47
- About
48
- -----
47
+ Welcome to the COSMOPharm repository, accompanying [our paper in *J. Chem. Theory Comput.*](https://dx.doi.org/10.1021/acs.jctc.9b01016). This project and its associated publication offer insights and a practical toolkit for researching drug-polymer and drug-solvent systems, aiming to provide the scientific community with the means to reproduce our findings and further the development of COSMO-SAC-based models.
48
+
49
+ ## About
49
50
 
50
51
  COSMOPharm is a Python package designed to streamline the predictive modeling of drug-polymer compatibility, crucial for the development of pharmaceutical amorphous solid dispersions. Apart from that, it can also be used for the miscibility/solubility of drugs with/in common solvents. Leveraging the COSMO-SAC (Conductor-like Screening Model Segment Activity Coefficient) model, COSMOPharm offers a robust platform for scientists and researchers to predict solubility, miscibility, and phase behavior in drug formulation processes.
51
52
 
52
- Features
53
- --------
53
+ ## Features
54
54
 
55
55
  - **Compatibility Prediction**: Utilize open-source COSMO-SAC model for prediction of drug-polymer compatibility.
56
56
  - **Solubility Calculation**: Calculate drug-polymer solubilities to guide the selection of suitable polymers for drug formulations.
57
57
  - **Miscibility and Phase Behavior Analysis**: Analyze the miscibility of drug-polymer pairs and understand their phase behavior under various conditions.
58
58
  - **User-friendly Interface**: Easy-to-use functions and comprehensive documentation to facilitate research and development in pharmaceutical sciences.
59
59
 
60
- Installation
61
- ------------
60
+ ## Installation
62
61
 
63
- Quick Installation
64
- ~~~~~~~~~~~~~~~~~~
62
+ ### Quick Installation
63
+ For most users, the quickest and easiest way to install COSMOPharm is via pip, which will manage all dependencies for you. Ensure you have already installed the cCOSMO library by following the instructions on the [COSMOSAC GitHub page](https://github.com/usnistgov/COSMOSAC).
65
64
 
66
- For most users, the quickest and easiest way to install COSMOPharm is via pip, which will manage all dependencies for you. Ensure you have already installed the cCOSMO library by following the instructions on the `COSMOSAC GitHub page <https://github.com/usnistgov/COSMOSAC>`_.
65
+ Once cCOSMO is installed, you can install COSMOPharm directly from [PyPI](https://pypi.org/project/cosmopharm/):
67
66
 
68
- Once cCOSMO is installed, you can install COSMOPharm directly from `PyPI <https://pypi.org/project/cosmopharm/>`_:
67
+ ```
68
+ pip install cosmopharm
69
+ ```
69
70
 
70
- .. code-block:: bash
71
+ ### Advanced Installation Options
71
72
 
72
- pip install cosmopharm
73
+ For users who need more control over the installation process (e.g., for development purposes or when integrating with other projects), COSMOPharm can also be installed by cloning the repository and installing manually.
73
74
 
74
- Advanced Installation Options
75
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
75
+ #### Step 1: Clone the Repository
76
76
 
77
- For users who need more control over the installation process (e.g., for development purposes or when integrating with other projects), COSMOPharm can also be installed by cloning the repository and installing manually.
77
+ First, clone the COSMOPharm repository:
78
+ ```
79
+ git clone https://github.com/ivanantolo/cosmopharm
80
+ ```
78
81
 
79
- Step 1: Clone the Repository
80
- """""""""""""""""""""""""""""
82
+ #### Step 2: Navigate to the Repository Directory
81
83
 
82
- First, clone the COSMOPharm repository:
84
+ ```
85
+ cd cosmopharm
86
+ ```
83
87
 
84
- .. code-block:: bash
88
+ #### Option 1: Using pip to Install from Local Source
85
89
 
86
- git clone https://github.com/ivanantolo/cosmopharm
90
+ This method installs COSMOPharm and manages all dependencies efficiently:
87
91
 
88
- Step 2: Navigate to the Repository Directory
89
- """"""""""""""""""""""""""""""""""""""""""""
92
+ ```
93
+ pip install .
94
+ ```
90
95
 
91
- .. code-block:: bash
92
96
 
93
- cd cosmopharm
97
+ #### Option 2: Using setup.py for Installation
94
98
 
95
- Option 1: Using pip to Install from Local Source
96
- """"""""""""""""""""""""""""""""""""""""""""""""
99
+ Alternatively, you can run the setup script directly:
97
100
 
98
- This method installs COSMOPharm and manages all dependencies efficiently:
101
+ ```
102
+ python setup.py install
103
+ ```
99
104
 
100
- .. code-block:: bash
105
+ While this method is straightforward, using `pip` is generally preferred for its dependency management capabilities.
101
106
 
102
- pip install .
107
+ Please note: Before proceeding with either advanced installation option, ensure the cCOSMO library is installed as described at the beginning of this section.
103
108
 
104
- Option 2: Using setup.py for Installation
105
- """"""""""""""""""""""""""""""""""""""""""
109
+ ## Quick Start
106
110
 
107
- Alternatively, you can run the setup script directly:
111
+ Here's a quick example to get you started with COSMOPharm: [Example](https://github.com/ivanantolo/cosmopharm/blob/main/example_usage.py)
108
112
 
109
- .. code-block:: bash
113
+ ```python
114
+ # Example usage script: example_usage.py
110
115
 
111
- python setup.py install
116
+ import cCOSMO
117
+ from cosmopharm import SLE, LLE, COSMOSAC
118
+ from cosmopharm.utils import read_params, create_components
112
119
 
113
- While this method is straightforward, using `pip` is generally preferred for its dependency management capabilities.
120
+ # Rest of the script...
121
+ ```
114
122
 
115
- Please note: Before proceeding with either advanced installation option, ensure the cCOSMO library is installed as described at the beginning of this section.
123
+ ## Contributing / Getting Help
124
+
125
+ Contributions to COSMOPharm are welcome! We accept contributions via pull requests to the [GitHub repository](https://github.com/ivanantolo/cosmopharm).
116
126
 
117
- Quick Start
118
- -----------
127
+ For bugs, feature requests, or other queries, please [open an issue](https://github.com/ivanantolo/cosmopharm/issues) on GitHub.
119
128
 
120
- Here's a quick example to get you started with COSMOPharm: `Example <https://github.com/ivanantolo/cosmopharm/blob/main/example_usage.py>`_
121
129
 
122
- .. code-block:: python
130
+ ## Citation
123
131
 
124
- # Example usage script: example_usage.py
125
-
126
- import cCOSMO
127
- from cosmopharm import SLE, LLE, COSMOSAC
128
- from cosmopharm.utils import read_params, create_components
129
-
130
- # Rest of the script...
132
+ If you use COSMOPharm in your research, please consider citing it. You can find the citation format in [CITATION.md](https://github.com/ivanantolo/cosmopharm/CITATION.md).
131
133
 
132
- Contributing / Getting Help
133
- ---------------------------
134
134
 
135
- Contributions to COSMOPharm are welcome! We accept contributions via pull requests to the `GitHub repository <https://github.com/ivanantolo/cosmopharm>`_.
135
+ ## License
136
136
 
137
- For bugs, feature requests, or other queries, please `open an issue <https://github.com/ivanantolo/cosmopharm/issues>`
137
+ COSMOPharm is released under the MIT License. See the [LICENSE](https://github.com/ivanantolo/cosmopharm/LICENSE) file for more details.
@@ -11,8 +11,8 @@ cosmopharm/utils/convert.py,sha256=V-7jY-Sb7C38N5bQcp1c27EOiVJfriP6zRbLAIKgrdE,2
11
11
  cosmopharm/utils/helpers.py,sha256=D2Zx9P0ywWWl2XQtzC6e5ek2CrudBIncfAIp_7vQnC0,1430
12
12
  cosmopharm/utils/lle_scanner.py,sha256=So9FCxLLcHmBkuF6zggMo3W3gFBocEmuRzyxVGy69JM,6587
13
13
  cosmopharm/utils/spacing.py,sha256=vtM9b4wodpFGkZFGGLhiSXT51Zl6fNK2Og4oRcbLFH4,9222
14
- cosmopharm-0.0.15.dist-info/LICENSE,sha256=25ZCycfBgonIECGYnZTy72eJVfzcHCEOz3DM9sTx7do,1162
15
- cosmopharm-0.0.15.dist-info/METADATA,sha256=R7I458311h0N-Tc7_ma9j-HRLcv9iieHUw2HxjrkWPA,6275
16
- cosmopharm-0.0.15.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
17
- cosmopharm-0.0.15.dist-info/top_level.txt,sha256=MGniVgvs1yq4sn6HQ7ErDVYV_g3st3Fs8TTFHOJVQ9I,11
18
- cosmopharm-0.0.15.dist-info/RECORD,,
14
+ cosmopharm-0.0.16.dist-info/LICENSE,sha256=25ZCycfBgonIECGYnZTy72eJVfzcHCEOz3DM9sTx7do,1162
15
+ cosmopharm-0.0.16.dist-info/METADATA,sha256=eMBqboRjlOwAWMS6kSkbs7l-QY4Vdc_j3ZAp4xmg6kI,6164
16
+ cosmopharm-0.0.16.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
17
+ cosmopharm-0.0.16.dist-info/top_level.txt,sha256=MGniVgvs1yq4sn6HQ7ErDVYV_g3st3Fs8TTFHOJVQ9I,11
18
+ cosmopharm-0.0.16.dist-info/RECORD,,