- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
25 lines (20 loc) · 877 Bytes
/
Copy pathsetup.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
fromsetuptoolsimportsetup
fromglobimportglob
importos
__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/','') forr,d,finos.walk('probiopred/data/') foriinf ]
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)