-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (27 loc) · 1004 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
requirements = ["numpy >= 1.22.3",
"pandas>=1.4.2",
"fastnumbers>=3.1.0"]
setup(
name='blastMining',
version = '1.2.0',
author = 'Ahmad Nuruddin Khoiri',
author_email = 'nuruddinkhoiri34@gmail.com',
long_description = 'Mining NCBI BLAST outputs',
license = 'GPLv3',
packages=find_packages(),
entry_points = {'console_scripts': ['blastMining = blastMining.blastMining:main']},
scripts=['blastMining/script/blastMining_lca.sh',
'blastMining/script/blastMining_lca2.sh',
'blastMining/script/run_besthit.py',
'blastMining/script/run_vote.py',
'blastMining/script/run_voteSpecies.py',
'blastMining/script/run_lca.py',
'blastMining/script/tab2krona.py'],
url='https://github.com/NuruddinKhoiry/blastMining.git',
python_requires='>=3',
install_requires=requirements,
)