-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (38 loc) · 1.41 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
import setuptools
with open( "README.md" ) as fh:
long_description = fh.read( )
setuptools.setup(
name = "waafle",
version = "1.1.0",
author = "Eric Franzosa",
author_email = "[email protected]",
license = "MIT",
description = "WAAFLE: a Workflow to Annotate Assemblies and Find LGT Events",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://huttenhower.sph.harvard.edu/waafle",
packages = setuptools.find_packages( ),
keywords=['microbial','microbiome','bioinformatics','microbiology','metagenomic','metatranscriptomic','waafle'],
platforms=['Linux','MacOS'],
classifiers = [
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3.4",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
entry_points = {
"console_scripts": [
"waafle_search = waafle.waafle_search:main",
"waafle_genecaller = waafle.waafle_genecaller:main",
"waafle_orgscorer = waafle.waafle_orgscorer:main",
"waafle_junctions = waafle.waafle_junctions:main",
"waafle_qc = waafle.waafle_qc:main",
],
},
install_requires = [
"numpy >= 1.13.0",
],
)