-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 725 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 725 Bytes
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
from setuptools import setup, find_packages
from nnTreeVB import __version__
_version = __version__
INSTALL_REQUIRES = []
with open("requirements.txt", "r") as fh:
for line in fh:
INSTALL_REQUIRES.append(line.rstrip())
setup(
name='nnTreeVB',
version=_version,
description='Neural Network-based Variational Bayesian '+\
'Model for Phylogenetic Parameter Estimation',
author='Amine Remita',
packages=find_packages(),
scripts=[
"scripts/nntreevb.py",
"scripts/nntreevb_write_run_exps.py",
"scripts/nntreevb_sum_plot_exps.py",
"scripts/slurm_exps.sh",
"scripts/uncompress_exps_pkl.py"
],
install_requires=INSTALL_REQUIRES
)