-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (34 loc) · 981 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
39
40
41
42
43
#!/usr/bin/env python
"""Test for sites of contrasting conservation between gene clades."""
from os.path import dirname
setup_args = {}
try:
from setuptools import setup
# Dependencies for easy_install:
setup_args.update(
install_requires=[
'biofrills >= 0.2',
'biopython >= 1.60',
'scipy >= 0.6',
'reportlab >= 2.5',
'weblogo >= 3.0',
'bottle >= 0.10',
])
except ImportError:
from distutils.core import setup
DIR = (dirname(__file__) or '.') + '/'
setup_args.update(
name='CladeCompare',
version='0.2',
description=__doc__,
author='Eric Talevich',
author_email='[email protected]',
url='http://github.com/etal/cladecompare',
packages=['cladecomparelib'],
package_data={'cladecomparelib': ['data/*.ttf']},
scripts=[
DIR + 'cladecompare.py',
DIR + 'cladereport.py',
DIR + 'cladeweb.py'
])
setup(**setup_args)