Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gibsramen committed Jun 23, 2022
1 parent b78ad51 commit e6ef28c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
graft qupid/tests/data
2 changes: 1 addition & 1 deletion qupid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .qupid import match_by_single, match_by_multiple, shuffle


__version__ = "0.0.2"
__version__ = "0.1.0"

__all__ = ["CaseMatchOneToMany", "CaseMatchOneToOne", "CaseMatchCollection",
"match_by_single", "match_by_multiple", "shuffle"]
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
long_description = f.read()

classes = """
Development Status :: 3 - Alpha
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries
Topic :: Scientific/Engineering
Expand All @@ -40,6 +40,7 @@
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gibsramen/qupid",
version=version,
license="BSD-3-Clause",
packages=find_packages(),
Expand All @@ -50,12 +51,13 @@
"scikit-bio",
"networkx",
"joblib",
"scipy"
"scipy",
"click",
"seaborn"
],
classifiers=classifiers,
include_package_data=True,
extras_require={"dev": ["pytest", "pytest-cov", "flake8"]},
package_data={"qupid": ["tests/asd.tsv"]},
entry_points={"console_scripts": standalone,
"qiime2.plugins": q2_cmds}
)

0 comments on commit e6ef28c

Please sign in to comment.