-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
21 lines (20 loc) · 1.11 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='CheckM2',
version='1.0.2',
packages=find_packages(),
data_files=[('data', ['checkm2/data/feature_ordering.json', 'checkm2/data/kegg_path_category_mapping.json',
'checkm2/data/min_ref_rsdata_v1.npz', 'checkm2/data/module_definitions.json']),
('models', ['checkm2/models/specific_model_COMP.hd5', 'checkm2/models/cosine_table.pkl',
'checkm2/models/model_CONT.gbm', 'checkm2/models/general_model_COMP.gbm', 'checkm2/models/scaler.sav']),
('version', ['checkm2/version/diamond_path.json', 'checkm2/version/version_hashes_1.0.2.json']),
('testrun', ['checkm2/testrun/TEST1.tst', 'checkm2/testrun/TEST2.tst', 'checkm2/testrun/TEST3.tst'])],
include_package_data=True,
url='https://github.com/chklovski/CheckM2',
license='',
install_requires=(),
author='Alex Chklovski',
scripts=['bin/checkm2'],
author_email='[email protected]',
description='CheckM2 - Predicting the quality of metagenome-recovered bins'
)