-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 992 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (31 loc) · 992 Bytes
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
import os
from setuptools import Extension, setup, find_packages
from Cython.Build import cythonize
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
ext_modules=cythonize("src/ChromBridGE/ChromBridGE_aln.pyx"),
name = "ChromBridGE",
version = "0.0.5",
author = "Kendell Clement",
author_email = "kclement@mgh.harvard.edu",
description = "Detection of CRISPR-Cas-associated translocations from next-generation sequencing data",
long_description=long_description,
keywords = "NGS Translocations",
package_dir={"": "src"},
packages=find_packages(where='src'),
py_modules=['ChromBridGE','ChromBridGE.ChromBridGE_tx'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
],
entry_points={
'console_scripts': [
'ChromBridGE = ChromBridGE.ChromBridGE:main',
]
},
install_requires=[
'numpy',
'Cython',
],
)