-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
136 lines (102 loc) · 3 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import os
import io
from setuptools import setup, find_packages, Command
from os import path
root = 'MrY'
name = 'MrY'
exec(open("MrY/version.py").read())
here = path.abspath(path.dirname(__file__))
description = ('Mr.Y -- Management of references at YanaiLab')
install_requires = [
'snakemake>=4.0.0, <6',
'pyyaml>=3.12',
'tabulate>=0.7',
]
# do not require installation if built by ReadTheDocs
# (we mock these modules in docs/source/conf.py)
if 'READTHEDOCS' not in os.environ or \
os.environ['READTHEDOCS'] != 'True':
install_requires.extend([
])
else:
install_requires.extend([
#'pandas>=0.13, <1',
])
# get long description from file
long_description = ''
with io.open(path.join(here, 'README.md'), encoding='UTF-8') as fh:
long_description = fh.read()
class CleanCommand(Command):
"""Removes files generated by setuptools.
"""
# see https://github.com/trigger/trigger/blob/develop/setup.py
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
error_msg = 'You must run this command in the package root!'
if not os.getcwd() == here:
raise OSError(error_msg)
else:
os.system('rm -rf ./dist ./build ./*.egg-info ')
setup(
name=name,
version=__version__,
description=description,
long_description=long_description,
# homepage
url='https://github.com/Puriney/Mr.Y',
author='Yun Yan',
author_email='yy1533@nyu.edu',
license='GPLv3',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Utilities',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
],
keywords='GENCODE Ensemble NCBI genome transcriptome reference management',
# packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
packages=find_packages(exclude=['docs', 'tests*']),
# packages=find_packages(root),
# libraries = [],
install_requires=install_requires,
# tests_require=[],
extras_require={
'docs': [
'sphinx',
'sphinx-rtd-theme',
'sphinx-argparse',
'mock',
],
'tests': [
'pytest>=3, <4',
'pytest-cov>=2.2.1, <3',
],
},
# data
package_data={
'MrY': [
'template/*', # config.yaml, etc
'workflow/*' # snakemake workflow
]
},
# data outside the package
# data_files=[('my_data', ['data/data_file'])],
entry_points={
'console_scripts': [
('yun = '
'MrY.__init__:main'),
],
},
cmdclass={
'clean': CleanCommand,
},
)