-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
74 lines (59 loc) · 2.29 KB
/
setup.py
File metadata and controls
74 lines (59 loc) · 2.29 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
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name='rsempipeline',
version='1.0.1',
zip_safe=True,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
],
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
# packages=setuptools.find_packages(exclude=['venv*', 'fq_gz_temp_stats', 'non-vc']),
packages=find_packages(),
# https://packaging.python.org/en/latest/technical.html#install-requires-vs-requirements-files
install_requires=[
'beautifulsoup4>=4.3.2',
'Jinja2>=2.7.3',
'paramiko>=1.14.0',
'PyYAML==3.11',
'ruffus>=2.4.1',
'requests>=2.3.0',
'testfixtures>=4.1.2',
'pytest>=2.7.2',
'pytest-cov>=1.8.1',
'python-coveralls>=2.5.0',
'mock>=1.1.3'
],
scripts=[
'rsempipeline/bin/rp-prep',
'rsempipeline/bin/rp-run',
'rsempipeline/bin/rp-transfer'],
# using entry_points would cause problem for ruffus to recoganize decorated
# tasks
# # To provide executable scripts, use entry points in preference to the
# # "scripts" keyword. Entry points provide cross-platform support and allow
# # pip to create the appropriate form of executable for the target platform.
# entry_points={
# 'console_scripts': [
# 'rp-prep = rsempipeline.preprocess.prep:main',
# 'rp-run = rsempipeline.core.run:main',
# 'rp-transfer = rsempipeline.core.transfer:main',
# ],
# },
# metadata for upload to PyPI
author="Zhuyi Xue",
author_email="zxue@bcgsc.ca",
description="A pipeline for analyzing GEO samples using rsem",
long_description="rsem as in http://deweylab.biostat.wisc.edu/rsem/README.html (more to be written)",
license="GPLv3",
keywords="GEO rsem pipeline",
url="https://github.com/bcgsc/rsempipeline.git",
include_package_data=True,
)