This repository has been archived by the owner on Nov 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix invalid Python 3 package (whl). * Remove unused test data files. * Remove strict dependence on matplotlib and pysam versions. * Cleanup MANIFEST.
- Loading branch information
Showing
10 changed files
with
24 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__author__ = 'Vimalkumar Velayudhan' | ||
__email__ = '[email protected]' | ||
__version__ = '0.1.0' | ||
__version__ = '0.1.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[wheel] | ||
universal = 1 | ||
|
||
[pep8] | ||
ignore = E501 | ||
max-line-length = 160 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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'}, | ||
|
@@ -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']} | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.