forked from algaebrown/Metadensity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (35 loc) · 1.37 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
from setuptools import setup
from setuptools import find_packages
long_description = "Metadensity - Metagene plot using CLIP-seq and STAMP, for RNAs"
setup(
name = "metadensity",
long_description = long_description,
version = "0.0.1",
packages = find_packages(),
package_dir = {'metadensity': 'metadensity'},
install_requires = ['setuptools',
'pysam >= 0.15.4',
'numpy >= 1.18.1 ',
'scipy >= 1.4.1',
'matplotlib >= 3.1.3',
'pybedtools >= 0.8.1',
'pandas >= 1.0.2',
'pybigwig',
'seaborn',
'biopython',
'scikit-learn',
'deepdish'
],
setup_requires = ["setuptools_git >= 0.3",],
#scripts=['scripts/region_call.py', 'scripts/shrink_region.py'],
#metadata for upload to PyPI
author = "Hsuan-lin Her",
author_email = "[email protected]",
description = "A set of scripts visualizing eCLIP data",
license = "GPL2",
keywords = "CLIP-seq, metagene, bioinformatics",
url = "https://github.com/algaebrown/Metadensity",
#Other stuff I feel like including here
#include_package_data = True
#zip_safe = True #True I think
)