-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 876 Bytes
/
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
from setuptools import setup
setup(
setup_requires=['pbr'],
pbr=True
)
# setuptools.setup(
# name='ATACofthesnake',
# version='0.0.1',
# description='Process ATAC files from bam level.',
# author="Deboutte",
# author_email="[email protected]",
# scripts=['bin/ATAC'],
# packages=['ATACofthesnake'],
# package_data={"": ["diffAcc.smk",
# "diffDown.smk",
# "bamProcess.smk",
# "template.tex",
# "Rscripts/edgeR_scalefactors.R",
# "Rscripts/DESeq2.R",
# "Rscripts/EdgeR.R",
# "envs/*yaml"]},
# include_package_data=True,
# install_requires=['configparser', 'rich', 'snakemake', 'pandas',
# 'seaborn', 'matplotlib', 'numpy'],
# python_requires='>3'
# )