clease


Nameclease JSON
Version 1.0.6 PyPI version JSON
download
home_pagehttps://gitlab.com/computationalmaterials/clease/
SummaryCLuster Expansion in Atomistic Simulation Environment
upload_time2023-01-30 10:09:57
maintainer
docs_urlNone
authorJ. H. Chang, D. Kleiven, A. S. Tygesen
requires_python>=3.7
licenseMPL-2.0
keywords cluster expansion monte carlo computational materials materials research
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # CLEASE

[![coverage](https://gitlab.com/computationalmaterials/clease/badges/master/coverage.svg)](https://gitlab.com/computationalmaterials/clease/)
[![PyPI version](https://badge.fury.io/py/clease.svg)](https://badge.fury.io/py/clease)
[![Conda](https://img.shields.io/conda/vn/conda-forge/clease)](https://anaconda.org/conda-forge/clease)
[![Documentation Status](https://readthedocs.org/projects/clease/badge/?version=latest)](https://clease.readthedocs.io/en/latest/?badge=latest)

CLuster Expansion in Atomic Simulation Environment (CLEASE) is a package that automates the cumbersome setup and construction procedure of cluster expansion (CE). It provides a comprehensive list of tools for specifying parameters for CE, generating training structures, fitting effective cluster interaction (ECI) values and running Monte Carlo simulations. A detailed description of the package can be found in the [documentation](https://clease.readthedocs.io/) and our [paper](https://doi.org/10.1088/1361-648X/ab1bbc).

For information on how to contribute to CLEASE, please see the [contributing](CONTRIBUTING.md) file.

# Installation

Install the CLEASE code by executing

```bash
pip install clease
```

Alternative, CLEASE is also available through anaconda on [conda](https://conda.io) via [conda-forge](https://conda-forge.org/).
We recommend installing CLEASE via conda on windows machines in order to simplify compilations, as pip tends to have
a hard time compiling the C++ code. Install into your conda environment:

```sh
conda install -c conda-forge clease
```
## Graphical User Interface

Clease has a stand-alone jupyter notebook GUI, which is capable of performing most
of the standard CE routines. It can be found [here](https://clease-gui.readthedocs.io).

CLEASE GUI can be installed from PyPI or anaconda using one of the two following commands.

### PyPI

```bash
pip install clease[gui]
```

### Anaconda

```bash
conda install -c conda-forge clease-gui
```

## Development

If you are a developer you might want to install CLEASE by executing the following command in the root folder of the project

```bash
pip install -e .
```

In order to run the tests, the testing dependencies should be installed. They can be installed with the extra
`test` option

```bash
pip install .[test]
```

There is an additional option for development purposes, `dev`, which contains some convenience packages.
All of the extras options can be installed via the `all` option,
i.e.

```bash
pip install .[all]
```

Note, that if you are using `zsh`, you need to [escape the argument](https://stackoverflow.com/a/30539963), e.g.

```bash
pip install '.[all]'
```

## Troubleshooting

If you are running on Mac and get the error

```bash
fatal error: 'ios' file not found
```

try this before installing

```bash
export MACOSX_DEPLOYMENT_TARGET=10.14
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://gitlab.com/computationalmaterials/clease/",
    "name": "clease",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Cluster Expansion,Monte Carlo,Computational materials,Materials research",
    "author": "J. H. Chang, D. Kleiven, A. S. Tygesen",
    "author_email": "jchang@dtu.dk, david.kleiven@ntnu.no, alexty@dtu.dk",
    "download_url": "https://files.pythonhosted.org/packages/12/4c/97f526c10f302580d117c83fcebe6bb008f87cf4d52f642937bf2341589a/clease-1.0.6.tar.gz",
    "platform": null,
    "description": "# CLEASE\n\n[![coverage](https://gitlab.com/computationalmaterials/clease/badges/master/coverage.svg)](https://gitlab.com/computationalmaterials/clease/)\n[![PyPI version](https://badge.fury.io/py/clease.svg)](https://badge.fury.io/py/clease)\n[![Conda](https://img.shields.io/conda/vn/conda-forge/clease)](https://anaconda.org/conda-forge/clease)\n[![Documentation Status](https://readthedocs.org/projects/clease/badge/?version=latest)](https://clease.readthedocs.io/en/latest/?badge=latest)\n\nCLuster Expansion in Atomic Simulation Environment (CLEASE) is a package that automates the cumbersome setup and construction procedure of cluster expansion (CE). It provides a comprehensive list of tools for specifying parameters for CE, generating training structures, fitting effective cluster interaction (ECI) values and running Monte Carlo simulations. A detailed description of the package can be found in the [documentation](https://clease.readthedocs.io/) and our [paper](https://doi.org/10.1088/1361-648X/ab1bbc).\n\nFor information on how to contribute to CLEASE, please see the [contributing](CONTRIBUTING.md) file.\n\n# Installation\n\nInstall the CLEASE code by executing\n\n```bash\npip install clease\n```\n\nAlternative, CLEASE is also available through anaconda on [conda](https://conda.io) via [conda-forge](https://conda-forge.org/).\nWe recommend installing CLEASE via conda on windows machines in order to simplify compilations, as pip tends to have\na hard time compiling the C++ code. Install into your conda environment:\n\n```sh\nconda install -c conda-forge clease\n```\n## Graphical User Interface\n\nClease has a stand-alone jupyter notebook GUI, which is capable of performing most\nof the standard CE routines. It can be found [here](https://clease-gui.readthedocs.io).\n\nCLEASE GUI can be installed from PyPI or anaconda using one of the two following commands.\n\n### PyPI\n\n```bash\npip install clease[gui]\n```\n\n### Anaconda\n\n```bash\nconda install -c conda-forge clease-gui\n```\n\n## Development\n\nIf you are a developer you might want to install CLEASE by executing the following command in the root folder of the project\n\n```bash\npip install -e .\n```\n\nIn order to run the tests, the testing dependencies should be installed. They can be installed with the extra\n`test` option\n\n```bash\npip install .[test]\n```\n\nThere is an additional option for development purposes, `dev`, which contains some convenience packages.\nAll of the extras options can be installed via the `all` option,\ni.e.\n\n```bash\npip install .[all]\n```\n\nNote, that if you are using `zsh`, you need to [escape the argument](https://stackoverflow.com/a/30539963), e.g.\n\n```bash\npip install '.[all]'\n```\n\n## Troubleshooting\n\nIf you are running on Mac and get the error\n\n```bash\nfatal error: 'ios' file not found\n```\n\ntry this before installing\n\n```bash\nexport MACOSX_DEPLOYMENT_TARGET=10.14\n```\n",
    "bugtrack_url": null,
    "license": "MPL-2.0",
    "summary": "CLuster Expansion in Atomistic Simulation Environment",
    "version": "1.0.6",
    "split_keywords": [
        "cluster expansion",
        "monte carlo",
        "computational materials",
        "materials research"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "124c97f526c10f302580d117c83fcebe6bb008f87cf4d52f642937bf2341589a",
                "md5": "74af72e20ffb6a80b5dfb7ea9f86a20a",
                "sha256": "3801b2bf050d441e39817f56135b28a8868d82d9f44a1b77d8a6ff0aeaeaa942"
            },
            "downloads": -1,
            "filename": "clease-1.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "74af72e20ffb6a80b5dfb7ea9f86a20a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 499763,
            "upload_time": "2023-01-30T10:09:57",
            "upload_time_iso_8601": "2023-01-30T10:09:57.180510Z",
            "url": "https://files.pythonhosted.org/packages/12/4c/97f526c10f302580d117c83fcebe6bb008f87cf4d52f642937bf2341589a/clease-1.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-30 10:09:57",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "gitlab_user": "computationalmaterials",
    "gitlab_project": "clease",
    "lcname": "clease"
}
        
Elapsed time: 0.03933s