-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (56 loc) · 2.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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup
with open('README.md') as fh:
long_description = fh.read()
setup(
name='AMPcombi',
version='0.2.2',
author='Anan Ibrahim, Louisa Perelo',
author_email='[email protected], [email protected]',
packages=['ampcombi'],
scripts=['ampcombi/ampcombi.py',
'ampcombi/amp_database.py',
'ampcombi/amp_fasta.py',
'ampcombi/check_input.py',
'ampcombi/diamond_alignment.sh',
'ampcombi/diamond_makedb.sh',
'ampcombi/reformat_tables.py',
'ampcombi/functionality.py',
'ampcombi/optional_inputs.py',
'ampcombi/complete_summary.py',
'ampcombi/signalpep_pred.py',
'ampcombi/parse_gbks.py',
'ampcombi/hmm_to_csv_input_file.py',
'ampcombi/clustering_hits.py',
'ampcombi/print_header.py',
'ampcombi/version.py'],
url='http://pypi.python.org/pypi/AMPcombi/',
license='LICENSE.txt',
description='A parsing tool for AMP tools.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=["Proteomics", "Antimicrobial peptides", "Diamond", "MMSeqs2"
"Standardization", "Formatting","Functional annotation"],
install_requires=['pandas==1.5.2',
'biopython==1.80',
'requests'],
python_requires='==3.11.*',
entry_points={
'console_scripts': [
'ampcombi = ampcombi:main',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis"
],
)