Skip to content

Commit

Permalink
Merge pull request #1 from BeatsonLab-MicrobialGenomics/master
Browse files Browse the repository at this point in the history
This is now pip installable, general tidy up/organisation etc.
  • Loading branch information
mjsull committed Feb 25, 2015
2 parents dc7e5a0 + f92b9ae commit 8adaf29
Show file tree
Hide file tree
Showing 25 changed files with 826 additions and 140 deletions.
13 changes: 13 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[bumpversion]
current_version = 1.0.2
commit = True
tag = False

[bumpversion:file:setup.py]

[bumpversion:file:discoplot/DiscoPlot.py]

[bumpversion:file:do_release.sh]

[bumpversion:file:docs/conf.py]

59 changes: 59 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.cache
nosetests.xml
coverage.xml

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Us specific
.ropeproject/
docs/manual/
9 changes: 0 additions & 9 deletions .idea/RMaD.iml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/encodings.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/misc.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/modules.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/scopes/scope_settings.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/vcs.xml

This file was deleted.

14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: python
python:
- 2.7
before_install:
# We do this to make sure we get dependencies
- sudo apt-get update -qq
install:
- pip install -r requirements.txt --use-mirrors
- pip install .
notifications:
email: true
script:
# cd tests && sh TEST.sh
- echo 'Not testing ATM'
3 changes: 3 additions & 0 deletions CITATION.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Mitchell J Sullivan & Scott A Beatson*
DiscoPlot: Visualising discordant reads.
https://github.com/BeatsonLab-MicrobialGenomics/DiscoPlot
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include LICENSE
include requirements.txt
include README.rst
recursive-include docs/_build/html *
Loading

0 comments on commit 8adaf29

Please sign in to comment.