-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (30 loc) · 1000 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
34
from setuptools import setup
def main():
setup(
name="KPHMMER",
version="1.0.2",
description="KPHMMER: Hidden Markov Model generator for detecting KEGG PATHWAY-specific genes",
author="Hirotaka Suetake",
author_email="[email protected]",
license="MIT",
keywords=["Life Science", "Bioinfomatics", "HMMER", "KEGG"],
packages=["KPHMMER"],
zip_safe=False,
include_package_data=True,
install_requires=[
"numpy",
"PyYAML",
"scipy",
"requests"
],
scripts=["bin/kphmmer"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
)
if __name__ == "__main__":
main()