-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
38 lines (33 loc) · 826 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
31
32
33
34
35
36
37
38
#!/usr/bin/env python
#
# setup for the compbio package
#
# use the following to install:
# python setup.py install
#
from distutils.core import setup
import os
VERSION = '0.9'
scripts = [os.path.join('bin', x) for x in os.listdir('bin')]
setup(
name='compbio',
version=VERSION,
description='Python libraries and utilities for computational biology',
long_description = """
""",
author='Matt Rasmussen',
author_email='[email protected]',
url='https://github.com/mdrasmus/compbio',
download_url=
'https://codeload.github.com/mdrasmus/compbio/tar.gz/v%s' % VERSION,
packages=[
'compbio',
'compbio.synteny',
'compbio.vis',
'rasmus',
'rasmus.ply',
'rasmus.sexp',
'rasmus.vis',
],
scripts=scripts,
)