Skip to content
This repository has been archived by the owner on Nov 25, 2023. It is now read-only.

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
* Fix invalid Python 3 package (whl).
* Remove unused test data files.
* Remove strict dependence on matplotlib and pysam versions.
* Cleanup MANIFEST.
  • Loading branch information
vimalkvn committed Sep 8, 2015
1 parent dd9fdba commit 2eeaacb
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 18 deletions.
9 changes: 7 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
History
=======
0.1.1 (2015-09-08)
------------------
* Remove invalid Python 3 version (whl).
* Remove unused test data files.
* Remove strict dependence on matplotlib and pysam versions.
* Cleanup MANIFEST.

0.1.0 (2015-08-24)
---------------------

------------------
* First release on PyPI.
14 changes: 12 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
recursive-exclude * *.py[co]
exclude riboplot/riboplot_multi.py
include AUTHORS.rst
include CONTRIBUTING.rst
include HISTORY.rst
include LICENSE

recursive-include images *.png
recursive-include docs *.rst Makefile make.bat conf.py
recursive-include docs _static/*
recursive-include docs _styles/fonts/*.ttf
recursive-include docs _templates/*.html

include tests/README.rst
2 changes: 1 addition & 1 deletion riboplot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = 'Vimalkumar Velayudhan'
__email__ = '[email protected]'
__version__ = '0.1.0'
__version__ = '0.1.1'
3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[wheel]
universal = 1

[pep8]
ignore = E501
max-line-length = 160
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@
with open('HISTORY.rst') as history_file:
history = history_file.read().replace('.. :changelog:', '')

requirements = ['matplotlib==1.3.1', 'pysam==0.8.3']
requirements = ['matplotlib', 'pysam', 'mock==1.0.1']

test_requirements = [
# TODO: put package test requirements here
]

setup(
name='riboplot',
version='0.1.0',
version='0.1.1',
description="Plot read counts of RiboSeq data from BAM format alignment files",
long_description=readme + '\n\n' + history,
author="Vimalkumar Velayudhan",
author_email='[email protected]',
url='https://github.com/vimalkumarvelayudhan/riboplot',
packages=[
'riboplot',
'riboplot'
],
package_dir={'riboplot':
'riboplot'},
Expand All @@ -54,6 +54,5 @@
'ribocount = riboplot.ribocount:run']
},
package_data={'riboplot': ['data/*.html', 'data/css/*.gif', 'data/css/*.css',
'data/js/*.js', 'data/js/*.map', 'scripts/*.sh']},
exclude_package_data={'tests': ['data/*.bam', 'data/*.bai', 'data/*.fna', 'data/*.fai']}
'data/js/*.js', 'data/js/*.map', 'scripts/*.sh']}
)
1 change: 0 additions & 1 deletion tests/data/css

This file was deleted.

1 change: 0 additions & 1 deletion tests/data/js

This file was deleted.

1 change: 0 additions & 1 deletion tests/data/ribocount.html

This file was deleted.

1 change: 0 additions & 1 deletion tests/data/ribocount_index.html

This file was deleted.

1 change: 0 additions & 1 deletion tests/data/riboplot.html

This file was deleted.

0 comments on commit 2eeaacb

Please sign in to comment.