Metadata-Version: 2.1
Name: glasspy
Version: 0.1
Summary: Python module for scientists working with glass materials
Home-page: https://github.com/drcassar/glasspy
Author: Daniel Roberto Cassar
Author-email: daniel.r.cassar@gmail.com
License: GPL
Description: # Welcome to GlassPy
        GlassPy is a Python module for scientists working with glass materials.
        
        ## What is it?
        The aim is to provide classes and functions written in Python for materials scientists working with glass and non-crystalline materials. The hope is that with an open and collaborative project, we can build a reliable toolset to support faster and reproducible research on this topic.
        
        ## How to install
        The source code is hosted on GitHub at: https://github.com/drcassar/glasspy.
        
        Binary installers for the latest released version are available at the [Python Package Index](https://pypi.org/project/glasspy/). To install GlassPy using pip run
        
        ```sh
        pip install glasspy
        ```
        
        To install the latest development version of GlassPy run
        
        ```sh
        pip install --upgrade git+git://github.com/drcassar/glasspy
        ```
        
        ## Development
        GlassPy was born as a personal tool back in 2013 when I started coding with Python. It is based on a colection of MATLAB code that I wrote for the Glass State graduate course of 2010 and for the numerical analysis during my PhD.
        
        Right now, I'm sorting all my code and adequately documenting it to build this Python module. My personal objective is to increase the reproducibility of my research and hopefully be useful for researchers working in the field of glass science.
        
        ## Documentation
        There is no documentation right now, but all the functions have detailed docstring.
        
        Some examples are provided as notebooks in Google Colab (they run in the cloud, so you can test GlassPy without the need of installing anything on your machine):
        
        - [Finding the Kauzmann Temperature](https://colab.research.google.com/drive/1WAVddrOSDG7_pydV9g-WBfBisKQrMVeF)
        - [Regression of nucleation density data](https://colab.research.google.com/drive/139ke_S3eNq6MvJ3A_GnTWtlI8rn2QwKf)
        - [Regression of viscosity data](https://colab.research.google.com/drive/1U_xSg4H-de9QDlXChCN9Tsda8VlBlbAI)
        - [Nucleation kinetic model](https://colab.research.google.com/drive/1mRAr0HNXcO5YaAFktir-Kb9K4ZUdiXk_)
        
        ## Dependencies
        - [Python 3.6+](https://www.python.org/)
        - [NumPy](https://www.numpy.org)
        - [SciPy](https://www.scipy.org/)
        - [Pandas](https://pandas.pydata.org/)
        - [lmfit](https://lmfit.github.io/lmfit-py/)
        
        ## Other python repositories for glass science
        - [RelaxPy](https://github.com/Mauro-Glass-Group/RelaxPy) - Module to compute glass relaxation kinetics.
        - [PyGlass](https://github.com/jrafolsr/PyGlass) - Module to simulate the specific heat signature of glasses with a specified thermal treatment following the Tool-Narayanaswamy-Moynihan model.
        
        ## License
        [GPL](https://github.com/drcassar/glasspy/blob/master/LICENSE)
        
        GlassPy, Python module for scientists working with glass materials. Copyright (C) 2019 Daniel Roberto Cassar
        
        This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
        
        This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
        
Keywords: glass,non-crystalline materials
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Scientific/Engineering
Classifier: Intended Audience :: Science/Research
Classifier: Environment :: Console
Requires-Python: >=3.6
Description-Content-Type: text/markdown
