-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
1 changed file
with
5 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
|
||
setup( | ||
name="CMash", | ||
version="0.4.0", | ||
version="0.5.0", | ||
author="David Koslicki", | ||
author_email="[email protected]", | ||
description=("Fast and accurate set similarity estimation via containment min hash (for genomic datasets)."), | ||
|
@@ -44,16 +44,18 @@ | |
'pycairo' | ||
], | ||
zip_safe=False, | ||
package_data={'CMash': ['data/*.fna']}, | ||
package_data={'CMash': ['data/*.fna', 'tests/Organisms/*.fna.gz']}, | ||
scripts=SCRIPTS, | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"Programming Language :: Python :: 2.7", | ||
"License :: OSI Approved :: BSD License", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Natural Language :: English", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: POSIX :: Linux", | ||
|