forked from liulab-dfci/MAESTRO
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (40 loc) · 1.85 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
# -*- coding: utf-8 -*-
# Time-stamp: <2022-03-02 12:14:09 ta32852>
import sys,os
# from distutils.core import setup
try:
from setuptools import setup, find_packages
except ImportError:
print("Could not load setuptools. Please install the setuptools package.")
def main():
setup(
name = "MAESTRO",
version = "1.5.4",
package_dir = {'MAESTRO':'MAESTRO'},
packages = ['MAESTRO'],
package_data={'MAESTRO':['Snakemake/scRNA/*', 'Snakemake/integrate/*', 'Snakemake/scATAC/*', 'Snakemake/scATAC/rules/*', 'Snakemake/scRNA/rules/*', 'R/*', 'utils/*','annotations/*', 'html/*', '']},
#data_files = [(os.path.join(sys.prefix,'bin'), ['refpkg/giggle/bin/giggle'])],
scripts = ['MAESTRO/MAESTRO'],
include_package_data = True,
author = "Chenfei Wang, Dongqing Sun, Tao Liu, Changxin Wan, Ming (Tommy) Tang, Gali Bai",
author_email = "[email protected]",
description = "MAESTRO(Model-based AnalysEs of Single-cell Transcriptome and RegulOme) is a comprehensive "
"single-cell RNA-seq and ATAC-seq analysis suit built using snakemake. (MACS3 fork)",
license = "GPL-3.0",
url = "https://github.com/macs3-project/MAESTRO",
# entry_points = {"console_scripts": ["strap = strap:main"]},
classifiers = [
"Development Status :: 4 - Beta",
#"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GPL License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
#install_requires=["sinto>=0.7.1",],
#setup_requires=["sinto>=0.7.1",],
)
if __name__ == "__main__":
main()