-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (72 loc) · 2.63 KB
/
Copy pathsetup.py
File metadata and controls
81 lines (72 loc) · 2.63 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
long_description = open('README.rst').read()
setup(
name='DAStk',
version='1.0.1r1',
description='Differential ATAC-seq toolkit',
long_description=long_description,
license='BSD',
url='https://github.com/Dowell-Lab/DAStk',
#download_url='https://github.com/Dowell-Lab/DAStk/archive/refs/tags/v1.0.1.tar.gz',
author='Ignacio Tripodi',
author_email='ignacio.tripodi@colorado.edu',
python_requires='>=2.7',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='bioinformatics genomics chromatin ATAC-seq motif transcription_factor TF',
package_dir={'DAStk' : 'DAStk'},
packages=['DAStk'],
package_data={ 'DAStk': [
'public_knowledge/all_labels.tsv',
'public_knowledge/HOCOMOCOv11_to_uniprot.txt',
'public_knowledge/human_TFs_to_uniprot.txt',
'public_knowledge/prot_reactome_interactions.pkl',
]
},
install_requires=[
'argparse',
'datetime',
'numpy',
'matplotlib',
'adjustText',
'scipy',
'pandas',
'pybedtools',
'futures',
'scikit-learn',
'networkx>=2',
'upsetplot',
],
entry_points={
'console_scripts': [
'process_atac=DAStk:process_atac',
'differential_md_score=DAStk:differential_md_score',
'barcode_plot=DAStk:barcode_plot',
'ma_plot=DAStk:ma_plot',
'tf_result_explanations=DAStk:tf_result_explanations',
'tf_intersect=DAStk:tf_intersect',
],
},
project_urls={
'Bug Reports': 'https://github.com/Dowell-Lab/DAStk/issues',
'Source': 'https://github.com/Dowell-Lab/DAStk',
'Human Motif Sites (GRCh38)': 'http://dowell.colorado.edu/pubs/DAStk/motifs/HOCOMOCO_v11_p1e-6_grch38.tar.gz',
'Human Motif Sites (hg19)': 'http://dowell.colorado.edu/pubs/DAStk/motifs/HOCOMOCO_v11_p1e-6_hg19.tar.gz',
'Mouse Motif Sites (mm10)': 'http://dowell.colorado.edu/pubs/DAStk/motifs/HOCOMOCO_v11_p1e-6_mm10.tar.gz',
},
)