-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 917 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
# coding: utf-8
from setuptools import setup, Extension
from Cython.Distutils import build_ext
from Cython.Build import cythonize
import numpy
install_requires = [
"numpy",
"cython",
"biopython",
"click",
"mmh3"
]
setup(
name = "PlasmidPicker",
version = "0.0.1",
author = "Masafumi Harada",
url = "https://github.com/haradama/PlasmidPicker",
description = "This tool was developed to detect plasmid sequence data in the metagenome.",
cmdclass = {"build_ext": build_ext},
ext_modules = cythonize("plasmidpicker/core.pyx"),
entry_points = {
"console_scripts":[
"plasmidpicker = plasmidpicker.__main__:main",
],
},
packages =["plasmidpicker"],
package_data={"": ["data/param.json", "data/plasmids_hash.h5"]},
include_package_data=True,
install_requires = install_requires,
include_dirs = [numpy.get_include()]
)