-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.09 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.09 KB
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
from setuptools import setup, find_packages
from distutils.core import setup, Extension
from Cython.Distutils import build_ext
ext_modules = [
Extension("Delta", ["SGVFinder2/helpers/Delta.pyx"]),
Extension("sam2pmp_helper", ["SGVFinder2/helpers/sam2pmp_helper.pyx"]),
]
setup(
author="Tal Korem",
author_email="tk2829@cumc.columbia.edu",
version="v0.0.1",
name="SGVFinder2",
package_dir={"SGVFinder2": "SGVFinder2"},
packages=find_packages(),
include_package_data=True,
install_requires=[
"numpy",
"pandas",
"Cython",
"ujson",
"pysam",
"scipy",
"bokeh",
"Bio"
],
python_requires=">=3",
license="Apache-2.0",
license_files=["LICENSE"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
cmdclass={'build_ext': build_ext},
ext_modules=ext_modules,
entry_points = {
'console_scripts': ['icra=SGVFinder2.cli.icra_cli:run',
'svfinder=SGVFinder2.cli.svfinder_cli:run'
],
},
)