Skip to content

Commit

Permalink
An attempt to include matrices in pip distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed May 25, 2017
1 parent 3404667 commit 8a03270
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
setup(
name='dotplot',
packages=find_packages(),
version='0.4.1',
version='0.4.2',
license='LGPL-3.0',
description='Small bioinformatic package for dotplot\'s generation (in command line and in GUI)',
author='kn_bibs',
author_email='bibs.kn@uw.edu.pl',
url='https://github.com/kn-bibs/dotplot',
download_url='https://github.com/kn-bibs/dotplot/tarball/v0.4.1-alpha',
download_url='https://github.com/kn-bibs/dotplot/tarball/v0.4.2-alpha',
keywords=['dotplot', 'bioinformatic', 'gui'],
classifiers=[
'Development Status :: 3 - Alpha',
Expand All @@ -25,11 +25,15 @@
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'PyQt5',
'matplotlib',
'requests'
],
scripts=['bin/dotplot']
scripts=['bin/dotplot'],
package_data={
'dotplot': ['dotplot/matrices']
}
)

0 comments on commit 8a03270

Please sign in to comment.