forked from biocore/BIRDMAn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 1.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Inspired by the EMPress setup.py file
from setuptools import find_packages, setup
__version__ = "0.0.4"
classifiers = """
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Intended Audience :: Science/Research
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Topic :: Scientific/Engineering :: Bio-Informatics
"""
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',
packages=find_packages(),
include_package_data=True,
package_data={"": ["*.stan"]},
install_requires=[
"numpy",
"cmdstanpy>=1.0.1",
"biom-format",
"patsy",
"xarray",
"pandas",
"arviz>=0.11.3",
"matplotlib"
],
extras_require={"dev": ["pytest", "scikit-bio", "sphinx"]},
classifiers=[s.strip() for s in classifiers.split('\n') if s]
)