Skip to content

Commit

Permalink
versioning and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
khillion committed Jul 27, 2020
1 parent 89f5010 commit ab8e7b5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Metagenomics Data Analysis
# Moonstone

[![pipeline status](https://gitlab.pasteur.fr/metagenomics/data-analysis/badges/master/pipeline.svg)](https://gitlab.pasteur.fr/metagenomics/data-analysis/commits/master)
[![coverage report](https://gitlab.pasteur.fr/metagenomics/data-analysis/badges/master/coverage.svg)](https://gitlab.pasteur.fr/metagenomics/data-analysis/commits/master)
![Python package](https://github.com/motleystate/moonstone/workflows/Python%20package/badge.svg)

This repository aims to gather different scripts and items to help performing data analysis from metagenomics data.

Expand Down Expand Up @@ -77,11 +76,3 @@ To work on a new feature, related or not to an issue, we open a new branch from
> *If an issue is opened, we recommend to name your branch with the issue number at the begining, e.g. 5-my-new-feature*
Once done, work is reviewed through a merge request to keep developers up to date on the development of moonstone.

--------

## Contributors

* Sean Kennedy
* Kenzo-Hugo Hillion
* Mariela Furstenheim
1 change: 1 addition & 0 deletions moonstone/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .version import __version__ # noqa
2 changes: 2 additions & 0 deletions moonstone/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version_info = (0, 1, 0)
__version__ = '.'.join(str(c) for c in version_info)
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
from setuptools import setup, find_packages

exec(open('moonstone/version.py').read())

setup(
name="moonstone",
version="0.0.1",
version=__version__, # noqa
description='Utilities for metagenomics data analysis using machine learning.',
author='Kenzo-Hugo Hillion, Sean Kennedy',
author='Kenzo-Hugo Hillion, Agnès Baud, Mariela Furstenheim, Sean Kennedy',
author_email='kehillio@pasteur.fr',
install_requires=[
'pandas==1.0.1',
Expand Down

0 comments on commit ab8e7b5

Please sign in to comment.