forked from PlantandFoodResearch/Moa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
78 lines (71 loc) · 1.99 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
#!/usr/bin/env python
"""
Moa setup script
"""
from setuptools import setup
entry_points = {
'console_scripts': [
'moa = moa.cli.main:dispatch',
'moaprompt = moa.cli.moaprompt:moaprompt',
'moasetstatus = moa.cli.setstatus:setstatus',
'moar = moa.cli.moar:moar',
'moainit = moa.cli.moainit:moainit',
]}
requires = [
'Jinja2>2.0',
'argparse',
'sh',
'pyyaml>3',
'ruffus>=2.2',
'Yaco>=0.1.7',
'fist>=0.1.5',
'unittest2>=0.5',
'lockfile>=0.9',
'mdGraph>=0.1'
'markdown'
]
with open('VERSION') as F:
version = F.read().strip()
packages = [
'moa',
'moa.cli',
'moa.backend',
'moa.backend.ruff',
'moa.plugin',
'moa.plugin.job',
'moa.plugin.job.smw',
'moa.plugin.system',
'moa.plugin.system.doc',
'moa.template',
'moa.template.provider',
]
#uncertain how to deal with this :/
#data_files = (
# ('/etc', ['moa/data/etc/config']),
# ('/etc/profile.d', ['moa/data/etc/profile.d/moa.sh']),
# ('/etc/bash_completion.d', ['moa/data/etc/bash_completion.d/moa']),
#)
setup(name='moa',
version=version,
description='Moa - command-line workflows (in bioinformatics)',
author='Mark Fiers',
author_email='[email protected]',
url='http://mfiers.github.com/Moa/',
entry_points=entry_points,
packages=packages,
include_package_data=True,
# data_files=data_files,
zip_safe=False,
install_requires=requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Unix Shell',
'Topic :: Scientific/Engineering :: Bio-Informatics'
])