-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 950 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
import os
from setuptools import setup
setup(
name="SIDR",
version="0.0.2a2",
author="Duncan Murdock",
author_email="[email protected]",
description=("Sequence Idenification using Decision tRees; a tool to classify DNA reads using machine learning models."),
license="MIT",
keywords="console tool bioinformatics",
url="https://github.com/damurdock/SIDR",
packages=['sidr', 'tests'],
classifiers=[
"Development Status :: 3 - Alpha",
'Environment :: Console',
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
],
install_requires=["NumPy<=1.14.5", "SciPy", "pysam>=0.8.1", "BioPython", "scikit-learn", "click", "pandas"],
long_description=open("README.rst").read(),
entry_points={
'console_scripts': [
'sidr = sidr.cli:cli',
],
})