meissa


Namemeissa JSON
Version 0.0.1.dev0 PyPI version JSON
download
home_pagehttps://github.com/sintel-dev/Meissa
Summary
upload_time2024-03-15 19:21:23
maintainer
docs_urlNone
authorMIT Data To AI Lab
requires_python>=3.8
licenseMIT license
keywords meissa
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="left">
<img width=15% src="https://dai.lids.mit.edu/wp-content/uploads/2018/06/Logo_DAI_highres.png" alt=“DAI-Lab” />
<i>An open source project from Data to AI Lab at MIT.</i>
</p>

<!-- Uncomment these lines after releasing the package to PyPI for version and downloads badges -->
<!--[![PyPI Shield](https://img.shields.io/pypi/v/meissa.svg)](https://pypi.python.org/pypi/meissa)-->
<!--[![Downloads](https://pepy.tech/badge/meissa)](https://pepy.tech/project/meissa)-->
[![Github Actions Shield](https://img.shields.io/github/workflow/status/sintel-dev/Meissa/Run%20Tests)](https://github.com/sintel-dev/Meissa/actions)
[![Coverage Status](https://codecov.io/gh/sintel-dev/Meissa/branch/master/graph/badge.svg)](https://codecov.io/gh/sintel-dev/Meissa)



# meissa

- Documentation: https://sintel-dev.github.io/Meissa
- Homepage: https://github.com/sintel-dev/Meissa

# Overview

TODO: Provide a short overview of the project here.

# Install

## Requirements

**meissa** has been developed and tested on [Python 3.8, 3.9, 3.10 and 3.11](https://www.python.org/downloads/)

Also, although it is not strictly required, the usage of a [virtualenv](https://virtualenv.pypa.io/en/latest/)
is highly recommended in order to avoid interfering with other software installed in the system
in which **meissa** is run.

These are the minimum commands needed to create a virtualenv using python3.8 for **meissa**:

```bash
pip install virtualenv
virtualenv -p $(which python3.6) Meissa-venv
```

Afterwards, you have to execute this command to activate the virtualenv:

```bash
source Meissa-venv/bin/activate
```

Remember to execute it every time you start a new console to work on **meissa**!

<!-- Uncomment this section after releasing the package to PyPI for installation instructions
## Install from PyPI

After creating the virtualenv and activating it, we recommend using
[pip](https://pip.pypa.io/en/stable/) in order to install **meissa**:

```bash
pip install meissa
```

This will pull and install the latest stable release from [PyPI](https://pypi.org/).
-->

## Install from source

With your virtualenv activated, you can clone the repository and install it from
source by running `make install` on the `stable` branch:

```bash
git clone git@github.com:sintel-dev/Meissa.git
cd Meissa
git checkout stable
make install
```

## Install for Development

If you want to contribute to the project, a few more steps are required to make the project ready
for development.

Please head to the [Contributing Guide](https://sintel-dev.github.io/Meissa/contributing.html#get-started)
for more details about this process.

# Quickstart

In this short tutorial we will guide you through a series of steps that will help you
getting started with **meissa**.

TODO: Create a step by step guide here.

# What's next?

For more details about **meissa** and all its possibilities
and features, please check the [documentation site](
https://sintel-dev.github.io/Meissa/).


# History

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/sintel-dev/Meissa",
    "name": "meissa",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "meissa",
    "author": "MIT Data To AI Lab",
    "author_email": "dailabmit@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a7/98/995dc2dd49e52270dd134f7e2ba1eee85b1edf5636724b49c17236d8d181/meissa-0.0.1.dev0.tar.gz",
    "platform": null,
    "description": "<p align=\"left\">\n<img width=15% src=\"https://dai.lids.mit.edu/wp-content/uploads/2018/06/Logo_DAI_highres.png\" alt=\u201cDAI-Lab\u201d />\n<i>An open source project from Data to AI Lab at MIT.</i>\n</p>\n\n<!-- Uncomment these lines after releasing the package to PyPI for version and downloads badges -->\n<!--[![PyPI Shield](https://img.shields.io/pypi/v/meissa.svg)](https://pypi.python.org/pypi/meissa)-->\n<!--[![Downloads](https://pepy.tech/badge/meissa)](https://pepy.tech/project/meissa)-->\n[![Github Actions Shield](https://img.shields.io/github/workflow/status/sintel-dev/Meissa/Run%20Tests)](https://github.com/sintel-dev/Meissa/actions)\n[![Coverage Status](https://codecov.io/gh/sintel-dev/Meissa/branch/master/graph/badge.svg)](https://codecov.io/gh/sintel-dev/Meissa)\n\n\n\n# meissa\n\n- Documentation: https://sintel-dev.github.io/Meissa\n- Homepage: https://github.com/sintel-dev/Meissa\n\n# Overview\n\nTODO: Provide a short overview of the project here.\n\n# Install\n\n## Requirements\n\n**meissa** has been developed and tested on [Python 3.8, 3.9, 3.10 and 3.11](https://www.python.org/downloads/)\n\nAlso, although it is not strictly required, the usage of a [virtualenv](https://virtualenv.pypa.io/en/latest/)\nis highly recommended in order to avoid interfering with other software installed in the system\nin which **meissa** is run.\n\nThese are the minimum commands needed to create a virtualenv using python3.8 for **meissa**:\n\n```bash\npip install virtualenv\nvirtualenv -p $(which python3.6) Meissa-venv\n```\n\nAfterwards, you have to execute this command to activate the virtualenv:\n\n```bash\nsource Meissa-venv/bin/activate\n```\n\nRemember to execute it every time you start a new console to work on **meissa**!\n\n<!-- Uncomment this section after releasing the package to PyPI for installation instructions\n## Install from PyPI\n\nAfter creating the virtualenv and activating it, we recommend using\n[pip](https://pip.pypa.io/en/stable/) in order to install **meissa**:\n\n```bash\npip install meissa\n```\n\nThis will pull and install the latest stable release from [PyPI](https://pypi.org/).\n-->\n\n## Install from source\n\nWith your virtualenv activated, you can clone the repository and install it from\nsource by running `make install` on the `stable` branch:\n\n```bash\ngit clone git@github.com:sintel-dev/Meissa.git\ncd Meissa\ngit checkout stable\nmake install\n```\n\n## Install for Development\n\nIf you want to contribute to the project, a few more steps are required to make the project ready\nfor development.\n\nPlease head to the [Contributing Guide](https://sintel-dev.github.io/Meissa/contributing.html#get-started)\nfor more details about this process.\n\n# Quickstart\n\nIn this short tutorial we will guide you through a series of steps that will help you\ngetting started with **meissa**.\n\nTODO: Create a step by step guide here.\n\n# What's next?\n\nFor more details about **meissa** and all its possibilities\nand features, please check the [documentation site](\nhttps://sintel-dev.github.io/Meissa/).\n\n\n# History\n",
    "bugtrack_url": null,
    "license": "MIT license",
    "summary": "",
    "version": "0.0.1.dev0",
    "project_urls": {
        "Homepage": "https://github.com/sintel-dev/Meissa"
    },
    "split_keywords": [
        "meissa"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52dc70a6b04ea30612d5c75fdb5bbe8c1875d3a84854ee08fca02414b6b44f7a",
                "md5": "28e2c8c61d158d301f5e92e37739a3ea",
                "sha256": "e5efb4aa3801d87bb1abed7291bdd5e40d03dd441affc9e4e3d2195fd85e4ddb"
            },
            "downloads": -1,
            "filename": "meissa-0.0.1.dev0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "28e2c8c61d158d301f5e92e37739a3ea",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.8",
            "size": 5304,
            "upload_time": "2024-03-15T19:21:21",
            "upload_time_iso_8601": "2024-03-15T19:21:21.698961Z",
            "url": "https://files.pythonhosted.org/packages/52/dc/70a6b04ea30612d5c75fdb5bbe8c1875d3a84854ee08fca02414b6b44f7a/meissa-0.0.1.dev0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a798995dc2dd49e52270dd134f7e2ba1eee85b1edf5636724b49c17236d8d181",
                "md5": "19ec9d3fdd7a387ec2725de25cbfeda0",
                "sha256": "0eeb136f6cfdd85be4ebe59258474049833904c29693f538ce71103b5a7a0800"
            },
            "downloads": -1,
            "filename": "meissa-0.0.1.dev0.tar.gz",
            "has_sig": false,
            "md5_digest": "19ec9d3fdd7a387ec2725de25cbfeda0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 48059,
            "upload_time": "2024-03-15T19:21:23",
            "upload_time_iso_8601": "2024-03-15T19:21:23.593360Z",
            "url": "https://files.pythonhosted.org/packages/a7/98/995dc2dd49e52270dd134f7e2ba1eee85b1edf5636724b49c17236d8d181/meissa-0.0.1.dev0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-15 19:21:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sintel-dev",
    "github_project": "Meissa",
    "github_not_found": true,
    "lcname": "meissa"
}
        
Elapsed time: 0.19892s