cosmopharm 0.0.3__tar.gz → 0.0.5__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.
Files changed (24) hide show
  1. {cosmopharm-0.0.3/src/cosmopharm.egg-info → cosmopharm-0.0.5}/PKG-INFO +54 -5
  2. cosmopharm-0.0.5/README.md +97 -0
  3. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/setup.cfg +1 -1
  4. {cosmopharm-0.0.3 → cosmopharm-0.0.5/src/cosmopharm.egg-info}/PKG-INFO +54 -5
  5. cosmopharm-0.0.3/README.md +0 -48
  6. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/LICENSE +0 -0
  7. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/setup.py +0 -0
  8. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/__init__.py +0 -0
  9. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/actmodels/__init__.py +0 -0
  10. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/actmodels/actmodel.py +0 -0
  11. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/actmodels/cosmo.py +0 -0
  12. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/components.py +0 -0
  13. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/equilibrium/__init__.py +0 -0
  14. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/equilibrium/lle.py +0 -0
  15. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/equilibrium/sle.py +0 -0
  16. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/utils/__init__.py +0 -0
  17. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/utils/convert.py +0 -0
  18. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/utils/helpers.py +0 -0
  19. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/utils/lle_scanner.py +0 -0
  20. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm/utils/spacing.py +0 -0
  21. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm.egg-info/SOURCES.txt +0 -0
  22. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm.egg-info/dependency_links.txt +0 -0
  23. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm.egg-info/requires.txt +0 -0
  24. {cosmopharm-0.0.3 → cosmopharm-0.0.5}/src/cosmopharm.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cosmopharm
3
- Version: 0.0.3
3
+ Version: 0.0.5
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
@@ -37,7 +37,15 @@ Requires-Dist: openpyxl>=3.0
37
37
 
38
38
  # COSMOPharm
39
39
 
40
- COSMOPharm is a Python package designed to streamline the predictive modeling of drug-polymer compatibility, crucial for the development of pharmaceutical amorphous solid dispersions. 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.
40
+ <p align="center">
41
+ <img src="TOC.png" alt="TOC Figure" width="400"/>
42
+ </p>
43
+
44
+ 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.
45
+
46
+ ## About
47
+
48
+ 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.
41
49
 
42
50
  ## Features
43
51
 
@@ -48,11 +56,52 @@ COSMOPharm is a Python package designed to streamline the predictive modeling of
48
56
 
49
57
  ## Installation
50
58
 
51
- Please note that COSMOPharm requires the manual installation of the cCOSMO library. Refer to the [COSMOSAC GitHub page](https://github.com/usnistgov/COSMOSAC) for detailed instructions.
59
+ ### Quick Installation
60
+ 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).
61
+
62
+ Once cCOSMO is installed, you can install COSMOPharm directly from PyPI:
63
+
64
+ ```
65
+ pip install cosmopharm
66
+ ```
67
+
68
+ ### Advanced Installation Options
69
+
70
+ 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.
71
+
72
+ #### Step 1: Clone the Repository
73
+
74
+ First, clone the COSMOPharm repository:
75
+ ```
76
+ git clone https://github.com/ivanantolo/cosmopharm
77
+ ```
78
+
79
+ #### Step 2: Navigate to the Repository Directory
80
+
81
+ ```
82
+ cd cosmopharm
83
+ ```
84
+
85
+ #### Option 1: Using pip to Install from Local Source
86
+
87
+ This method installs COSMOPharm and manages all dependencies efficiently:
88
+
89
+ ```
90
+ pip install .
91
+ ```
92
+
93
+
94
+ #### Option 2: Using setup.py for Installation
95
+
96
+ Alternatively, you can run the setup script directly:
97
+
98
+ ```
99
+ python setup.py install
100
+ ```
52
101
 
53
- Once cCOSMO is installed, you can install COSMOPharm using pip:
102
+ While this method is straightforward, using `pip` is generally preferred for its dependency management capabilities.
54
103
 
55
- `pip install cosmopharm`
104
+ Please note: Before proceeding with either advanced installation option, ensure the cCOSMO library is installed as described at the beginning of this section.
56
105
 
57
106
  ## Quick Start
58
107
 
@@ -0,0 +1,97 @@
1
+ # COSMOPharm
2
+
3
+ <p align="center">
4
+ <img src="TOC.png" alt="TOC Figure" width="400"/>
5
+ </p>
6
+
7
+ 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.
8
+
9
+ ## About
10
+
11
+ 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.
12
+
13
+ ## Features
14
+
15
+ - **Compatibility Prediction**: Utilize open-source COSMO-SAC model for prediction of drug-polymer compatibility.
16
+ - **Solubility Calculation**: Calculate drug-polymer solubilities to guide the selection of suitable polymers for drug formulations.
17
+ - **Miscibility and Phase Behavior Analysis**: Analyze the miscibility of drug-polymer pairs and understand their phase behavior under various conditions.
18
+ - **User-friendly Interface**: Easy-to-use functions and comprehensive documentation to facilitate research and development in pharmaceutical sciences.
19
+
20
+ ## Installation
21
+
22
+ ### Quick Installation
23
+ 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).
24
+
25
+ Once cCOSMO is installed, you can install COSMOPharm directly from PyPI:
26
+
27
+ ```
28
+ pip install cosmopharm
29
+ ```
30
+
31
+ ### Advanced Installation Options
32
+
33
+ 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.
34
+
35
+ #### Step 1: Clone the Repository
36
+
37
+ First, clone the COSMOPharm repository:
38
+ ```
39
+ git clone https://github.com/ivanantolo/cosmopharm
40
+ ```
41
+
42
+ #### Step 2: Navigate to the Repository Directory
43
+
44
+ ```
45
+ cd cosmopharm
46
+ ```
47
+
48
+ #### Option 1: Using pip to Install from Local Source
49
+
50
+ This method installs COSMOPharm and manages all dependencies efficiently:
51
+
52
+ ```
53
+ pip install .
54
+ ```
55
+
56
+
57
+ #### Option 2: Using setup.py for Installation
58
+
59
+ Alternatively, you can run the setup script directly:
60
+
61
+ ```
62
+ python setup.py install
63
+ ```
64
+
65
+ While this method is straightforward, using `pip` is generally preferred for its dependency management capabilities.
66
+
67
+ Please note: Before proceeding with either advanced installation option, ensure the cCOSMO library is installed as described at the beginning of this section.
68
+
69
+ ## Quick Start
70
+
71
+ Here's a quick example to get you started with COSMOPharm: [Example](https://github.com/ivanantolo/cosmopharm/blob/main/example_usage.py)
72
+
73
+ ```python
74
+ # Example usage script: example_usage.py
75
+
76
+ import cCOSMO
77
+ from cosmopharm import SLE, LLE, COSMOSAC
78
+ from cosmopharm.utils import read_params, create_components
79
+
80
+ # Rest of the script...
81
+ ```
82
+
83
+ ## Contributing / Getting Help
84
+
85
+ Contributions to COSMOPharm are welcome! We accept contributions via pull requests to the [GitHub repository](https://github.com/ivanantolo/cosmopharm).
86
+
87
+ For bugs, feature requests, or other queries, please [open an issue](https://github.com/ivanantolo/cosmopharm/issues) on GitHub.
88
+
89
+
90
+ ## Citation
91
+
92
+ 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).
93
+
94
+
95
+ ## License
96
+
97
+ COSMOPharm is released under the MIT License. See the [LICENSE](https://github.com/ivanantolo/cosmopharm/LICENSE) file for more details.
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = cosmopharm
3
- version = 0.0.3
3
+ version = 0.0.5
4
4
  author = Ivan Antolovic
5
5
  author_email = Ivan.Antolovic@tu-berlin.de
6
6
  maintainer = Martin Klajmon
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cosmopharm
3
- Version: 0.0.3
3
+ Version: 0.0.5
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
@@ -37,7 +37,15 @@ Requires-Dist: openpyxl>=3.0
37
37
 
38
38
  # COSMOPharm
39
39
 
40
- COSMOPharm is a Python package designed to streamline the predictive modeling of drug-polymer compatibility, crucial for the development of pharmaceutical amorphous solid dispersions. 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.
40
+ <p align="center">
41
+ <img src="TOC.png" alt="TOC Figure" width="400"/>
42
+ </p>
43
+
44
+ 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.
45
+
46
+ ## About
47
+
48
+ 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.
41
49
 
42
50
  ## Features
43
51
 
@@ -48,11 +56,52 @@ COSMOPharm is a Python package designed to streamline the predictive modeling of
48
56
 
49
57
  ## Installation
50
58
 
51
- Please note that COSMOPharm requires the manual installation of the cCOSMO library. Refer to the [COSMOSAC GitHub page](https://github.com/usnistgov/COSMOSAC) for detailed instructions.
59
+ ### Quick Installation
60
+ 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).
61
+
62
+ Once cCOSMO is installed, you can install COSMOPharm directly from PyPI:
63
+
64
+ ```
65
+ pip install cosmopharm
66
+ ```
67
+
68
+ ### Advanced Installation Options
69
+
70
+ 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.
71
+
72
+ #### Step 1: Clone the Repository
73
+
74
+ First, clone the COSMOPharm repository:
75
+ ```
76
+ git clone https://github.com/ivanantolo/cosmopharm
77
+ ```
78
+
79
+ #### Step 2: Navigate to the Repository Directory
80
+
81
+ ```
82
+ cd cosmopharm
83
+ ```
84
+
85
+ #### Option 1: Using pip to Install from Local Source
86
+
87
+ This method installs COSMOPharm and manages all dependencies efficiently:
88
+
89
+ ```
90
+ pip install .
91
+ ```
92
+
93
+
94
+ #### Option 2: Using setup.py for Installation
95
+
96
+ Alternatively, you can run the setup script directly:
97
+
98
+ ```
99
+ python setup.py install
100
+ ```
52
101
 
53
- Once cCOSMO is installed, you can install COSMOPharm using pip:
102
+ While this method is straightforward, using `pip` is generally preferred for its dependency management capabilities.
54
103
 
55
- `pip install cosmopharm`
104
+ Please note: Before proceeding with either advanced installation option, ensure the cCOSMO library is installed as described at the beginning of this section.
56
105
 
57
106
  ## Quick Start
58
107
 
@@ -1,48 +0,0 @@
1
- # COSMOPharm
2
-
3
- COSMOPharm is a Python package designed to streamline the predictive modeling of drug-polymer compatibility, crucial for the development of pharmaceutical amorphous solid dispersions. 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.
4
-
5
- ## Features
6
-
7
- - **Compatibility Prediction**: Utilize open-source COSMO-SAC model for prediction of drug-polymer compatibility.
8
- - **Solubility Calculation**: Calculate drug-polymer solubilities to guide the selection of suitable polymers for drug formulations.
9
- - **Miscibility and Phase Behavior Analysis**: Analyze the miscibility of drug-polymer pairs and understand their phase behavior under various conditions.
10
- - **User-friendly Interface**: Easy-to-use functions and comprehensive documentation to facilitate research and development in pharmaceutical sciences.
11
-
12
- ## Installation
13
-
14
- Please note that COSMOPharm requires the manual installation of the cCOSMO library. Refer to the [COSMOSAC GitHub page](https://github.com/usnistgov/COSMOSAC) for detailed instructions.
15
-
16
- Once cCOSMO is installed, you can install COSMOPharm using pip:
17
-
18
- `pip install cosmopharm`
19
-
20
- ## Quick Start
21
-
22
- Here's a quick example to get you started with COSMOPharm: [Example](https://github.com/ivanantolo/cosmopharm/blob/main/example_usage.py)
23
-
24
- ```python
25
- # Example usage script: example_usage.py
26
-
27
- import cCOSMO
28
- from cosmopharm import SLE, LLE, COSMOSAC
29
- from cosmopharm.utils import read_params, create_components
30
-
31
- # Rest of the script...
32
- ```
33
-
34
- ## Contributing / Getting Help
35
-
36
- Contributions to COSMOPharm are welcome! We accept contributions via pull requests to the [GitHub repository](https://github.com/ivanantolo/cosmopharm).
37
-
38
- For bugs, feature requests, or other queries, please [open an issue](https://github.com/ivanantolo/cosmopharm/issues) on GitHub.
39
-
40
-
41
- ## Citation
42
-
43
- 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).
44
-
45
-
46
- ## License
47
-
48
- COSMOPharm is released under the MIT License. See the [LICENSE](https://github.com/ivanantolo/cosmopharm/LICENSE) file for more details.
File without changes
File without changes