-
Notifications
You must be signed in to change notification settings - Fork 78
/
setup.py
53 lines (44 loc) · 1.95 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
50
51
52
53
# -*- coding: utf-8 -*-
# @Author: Dongqing Sun
# @E-mail: Dongqingsun96@gmail.com
# @Date: 2020-06-12 03:53:45
# @Last Modified by: Gali Bai
# @Last Modified time: 2020-06-15 21:58:56
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.1",
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 = "gali.bai@hotmail.com",
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.",
license = "GPL-3.0",
url = "https://github.com/liulab-dfci/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()