Skip to content

Commit

Permalink
Merge eca3a7c into 0803225
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothee Cezard committed Jun 12, 2017
2 parents 0803225 + eca3a7c commit 9fdf872
Show file tree
Hide file tree
Showing 38 changed files with 1,670 additions and 2,758 deletions.
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,5 @@ docs/_sources/
docs/.doctrees/
docs/_templates/
docs/*.html
.fabfilerc
scripts/*.csv
scripts/*.log
scripts/*.out


12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install: "pip install -r requirements.txt"
script: PYTHONPATH=. py.test
- "3.6"
install:
- "pip install -r requirements.txt"
- "pip install python-coveralls pytest-cov"
- "python setup.py install"
script: PYTHONPATH=. py.test tests/ --doctest-modules -v --cov pyclarity_lims --cov-report term-missing
after_success:
- coveralls
notifications:
email:
on_success: never
Expand Down
5 changes: 5 additions & 0 deletions Changelogs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Changelog for Pyclarity-Lims
============================

0.4 (unreleased)
----------------
11 changes: 11 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
include *.md
include *.txt
include *.yml
include CHANGELOG
recursive-include etc *.html
recursive-include etc *.yaml
recursive-include tests *.gz
recursive-include tests *.log
recursive-include tests *.py
recursive-include tests *.sh
recursive-include tests *.txt
15 changes: 5 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
## Python interface to the GenoLogics LIMS server via its REST API.
## Python interface to the BaseSpace Clarity LIMS server via its REST API.

[![PyPI version](https://badge.fury.io/py/genologics.svg)](http://badge.fury.io/py/genologics)

A basic module for interacting with the GenoLogics LIMS server via
A basic module for interacting with the BaseSpace LIMS server via
its REST API. The goal is to provide simple access to the most common
entities and their attributes in a reasonably Pythonic fashion.

Supported python versions :

2.6
2.7 (recommended)
2.7
3.4
3.5
3.6 (recommended)

### Design

Expand All @@ -32,14 +32,9 @@ instance to the database.
### Installation

```
pip install genologics
pip install pyclarity-lims
```

or for the cutting edge version:

```
pip install https://github.com/SciLifeLab/genologics/tarball/master
```

### Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'genologics', u'Genologics Documentation',
('index', 'pyclarity_lims', u'Genologics Documentation',
[u'Per Kraulis, Johannes Alneberg'], 1)
]

Expand Down
31 changes: 0 additions & 31 deletions examples/attach_delivery_report.py

This file was deleted.

64 changes: 0 additions & 64 deletions examples/epp_script.py

This file was deleted.

26 changes: 0 additions & 26 deletions examples/get_application.py

This file was deleted.

49 changes: 0 additions & 49 deletions examples/get_artifacts.py

This file was deleted.

54 changes: 0 additions & 54 deletions examples/get_containers.py

This file was deleted.

39 changes: 0 additions & 39 deletions examples/get_labs.py

This file was deleted.

29 changes: 0 additions & 29 deletions examples/get_processes.py

This file was deleted.

Loading

0 comments on commit 9fdf872

Please sign in to comment.