-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
30 lines (27 loc) · 845 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='Rubra',
version='0.1.5',
author='Bernie Pope',
author_email='bjpope@unimelb.edu.au',
packages=['rubra'],
package_data={'rubra': ['examples/*.py']},
entry_points={
'console_scripts': ['rubra = rubra.rubra:main']
},
url='https://github.com/bjpop/rubra',
license='LICENSE.txt',
description='Rubra is a pipeline system for bioinformatics workflows\
with support for running pipeline stages on a distributed compute cluster.',
long_description=open('README.txt').read(),
install_requires=[
"ruffus==2.2",
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT',
'Operating System :: POSIX',
'Programming Language :: Python',
],
)