-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (41 loc) · 1.43 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
51
52
53
from setuptools import find_packages, setup
def _safe_read_lines(f, remove_git_lines=True):
with open(f) as in_f:
r = in_f.readlines()
r = [l.strip() for l in r]
if remove_git_lines:
r = [l for l in r if not l.startswith("git+ssh")]
return r
def readme():
with open('README.md') as f:
return f.read()
def description():
description = (
"""This package includes the Multimodal Variational Information Bottleneck algorithm,
used for microbiome-based disease prediction.
See: https://www.biorxiv.org/content/10.1101/2021.06.08.447505v1"""
)
return description
install_requires = _safe_read_lines("./requirements.txt")
setup(
name='microbiome_mvib',
version='0.1.0',
description=description(),
long_description=readme(),
keywords="microbiome",
url="https://github.com/nec-research/microbiome-mvib",
author="NEC Laboratories Europe GmbH",
author_email="filippo.grazioli@neclab.eu",
packages=find_packages(),
install_requires=install_requires,
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers/Researcher',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)