-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 851 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
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(name='marker_alignments',
version='0.4.2',
description="Process and summarise alignments of metagenomic sequencing reads to reference databases of marker genes",
long_description = long_description,
long_description_content_type="text/markdown",
url='http://github.com/wbazant/marker_alignments',
author='wbazant',
author_email='[email protected]',
license="MIT",
entry_points={"console_scripts": [
"marker_alignments = marker_alignments.main:main",
]},
install_requires=["pysam", "scipy", "numpy", "scikit-learn"],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
)