-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
29 lines (27 loc) · 1.12 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
import pathlib
import sys
from setuptools import find_packages, setup
import mdmcleaner
cwd = pathlib.Path(__file__).parent
readme = (cwd / "README.md").read_text()
setup(
name = "mdmcleaner",
version = mdmcleaner.__version__,
description = "A pipeline for the assessment, classification and refinement of microbial dark matter SAGs and MAGs",
long_description = readme,
long_description_content_type="text/markdown",
url = "https://github.com/KIT-IBG-5/mdmcleaner",
author = "John Vollmers",
author_email = "john.vollmers@kit.edu",
install_requires=["biopython", "numpy"],
classifiers=[
"Programming Language :: Python :: 3",
],
package_dir = {"mdmcleaner" : "mdmcleaner"},
packages = ["mdmcleaner", "mdmcleaner/hmms", "mdmcleaner/hmms/arch", "mdmcleaner/hmms/prok", "mdmcleaner/hmms/bact"],
package_data = {"mdmcleaner" : ["hmms/cutofftable_combined.tsv", "hmms/arch/*.hmm", "hmms/prok/*.hmm", "hmms/bact/*.hmm"]},
#scripts = ["mdmcleaner"],
include_package_data=True,
license = "GPL-3.0",
entry_points={"console_scripts":["mdmcleaner=mdmcleaner.mdmcleaner:main"]},
)