-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving to v0.0.2 to update documentation and PyPi description/classifiers.
- Loading branch information
Showing
2 changed files
with
15 additions
and
9 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,10 +1,10 @@ | ||
# Inspired by the EMPress setup.py file | ||
from setuptools import find_packages, setup | ||
|
||
__version__ = "0.0.1" | ||
__version__ = "0.0.2" | ||
|
||
# Inspired by the EMPress classifiers | ||
classifiers = """ | ||
Development Status :: 2 - Pre-Alpha | ||
Development Status :: 3 - Alpha | ||
License :: OSI Approved :: BSD License | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
|
@@ -14,13 +14,21 @@ | |
Operating System :: MacOS :: MacOS X | ||
Topic :: Scientific/Engineering :: Bio-Informatics | ||
""" | ||
short_desc = "Framework for differential abundance using Bayesian inference" | ||
short_desc = ( | ||
"Framework for differential microbiome abundance using Bayesian " | ||
"inference" | ||
) | ||
|
||
with open('README.md') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name="birdman", | ||
author="Gibraan Rahman", | ||
author_email="[email protected]", | ||
description=short_desc, | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/gibsramen/BIRDMAn", | ||
version=__version__, | ||
license='BSD-3-Clause', | ||
|
@@ -38,5 +46,5 @@ | |
"arviz" | ||
], | ||
extras_require={"dev": ["pytest", "scikit-bio", "sphinx"]}, | ||
classifiers=classifiers | ||
classifiers=[s.strip() for s in classifiers.split('\n') if s] | ||
) |