diff --git a/pypi-readme.rst b/pypi-readme.rst new file mode 100644 index 0000000..845e95d --- /dev/null +++ b/pypi-readme.rst @@ -0,0 +1,49 @@ +Plateo +====== + +Plateo (pronounced *Plato*, like the planet) is a Python library to assist in the +planning, running and checking of laboratory experiments involving microplates. + +It can be used to: + +- Read and write robotic protocols (picklists) in different formats to + accomodate different liquid dispensers (Tecan EVO, Labcyte Echo). +- Simulate liquid dispensing runs, taking into account the capacity and dead + volume of each container, to predict the maps of future plates. +- Parse plate data from common laboratory robots (for kinetic experiments, + fragment analysis, qPCR, etc.) +- Export plate information in various formats (graphics, spreadsheets, HTML, + JSON, etc.). + + +Infos +----- + +**PIP installation:** + +.. code:: bash + + pip install plateo + +**Web documentation:** + +``_ + +**Github Page:** + +``_ + +**Live demo:** + +``_ + +**License:** MIT, Copyright Edinburgh Genome Foundry + + +More biology software +--------------------- + +.. image:: https://raw.githubusercontent.com/Edinburgh-Genome-Foundry/Edinburgh-Genome-Foundry.github.io/master/static/imgs/logos/egf-codon-horizontal.png + :target: https://edinburgh-genome-foundry.github.io/ + +Plateo is part of the `EGF Codons `_ synthetic biology software suite for DNA design, manufacturing and validation. diff --git a/setup.py b/setup.py index d19a154..4da80bd 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ version=__version__, author="Zulko", description="Read/write microplate and picklist data for lab automation", - long_description=open("README.rst").read(), + long_description=open("pypi-readme.rst").read(), license="MIT", keywords="microplate biology parser converter report", packages=find_packages(exclude="docs"),