-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 877 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 877 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
#!/usr/bin/env python
from setuptools import setup
from glob import glob
import os
__copyright__ = "Copyright 2018-2019, ProBioPred"
__license__ = "GPL"
__version__ = "1.0.0"
__maintainer__ = "Dattatray Mongad"
long_description = ("ProBioPred can predict the potential probiotic candidates from genome sequence based on Support Vector Machine (SVM) trained models")
files = [os.path.join(r,i).replace('probiopred/','') for r,d,f in os.walk('probiopred/data/') for i in f ]
setup(name='ProBioPred',
version=__version__,
description=('Probiotic candidate prediction'),
maintainer=__maintainer__,
url='https://github.com/microDM/ProBioPred',
packages=['probiopred'],
scripts=glob('scripts/*py'),
install_requires=['biopython==1.81', 'pandas==2.1.1'],
package_data={'probiopred': files},
long_description=long_description)