-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (36 loc) · 1.33 KB
/
setup.py
File metadata and controls
44 lines (36 loc) · 1.33 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
from setuptools import setup, find_packages
with open("README") as file:
long_description = file.read()
setup(
name = "gscripts",
long_description = long_description,
version = "0.1.1",
packages = find_packages(),
install_requires = ['setuptools',
'pysam >= 0.6',
'numpy >= 1.5.1 ',
'scipy >= 0.11.0',
'matplotlib >= 1.1.0',
'pybedtools >= 0.5',
'scikit-learn >= 0.13.0',
],
setup_requires = ["setuptools_git >= 0.3",],
scripts=['rnaseq/count_tags.py',
'general/calculate_NRF.py',
'general/calculate_NRF.py',
'general/make_trackhubs.py',
'general/count_aligned_from_sam.py',
'general/negBedGraph.py',
'clipseq/perform_idr.py',
'clipseq/run_piranha.py'],
#metadata for upload to PyPI
author = "Gabriel Pratt",
author_email = "gpratt@ucsd.edu",
description = "A set of scripts for analysis of high throughput data",
license = "GPL2",
keywords = "bioinformatics",
url = "https://github.com/gpratt",
#Other stuff I feel like including here
include_package_data = True,
zip_safe = False #True I think
)