-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (47 loc) · 1.61 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="Hypermatrix",
version="0.1.0",
packages=find_packages(),
author="David Warren Katz",
author_email="[email protected]",
description=(
"Hypermatrix is a command-line tool for integrating multi-omics data and "
"analyzing epigenetic data using advanced tensor techniques. It features commands "
"like 'ABcluster' for single-cell clustering and A/B compartment analysis, and "
"'differentiate_chromosomes' for distinct A/B compartment calls across homologous chromosomes. "
"Hypermatrix leverages Non-Negative Tensor Factorization (NTF) to preserve critical interaction "
"information, offering a powerful solution for complex multi-omics integration and epigenetic analysis."
),
url="https://github.com/DavidWarrenKatz/Hypermatrix",
entry_points={
'console_scripts': [
'hypermatrix=hypermatrix.main:main',
],
},
install_requires=[
'numpy',
'matplotlib',
'seaborn',
'requests',
'h5py',
'scipy',
'pyBigWig',
'cooler',
'cytoolz',
'future',
'intervaltree',
'msgpack',
'pytest',
'scikit-image',
'scikit-learn',
'tables',
'docutils',
],
include_package_data=True, # To include package data as specified in MANIFEST.in
package_data={
'': ['utilities/**/*'], # Include everything under utilities folder
'': ['src/**/*'], # Include everything under src folder
},
)