-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
46 lines (45 loc) · 1.39 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
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup
setup(
name='CloudForest',
version='0.0.1',
author='Nicholas G. Crawford',
author_email='ngcrawford@gmail.com',
url='http://pypi.python.org/pypi/CloudForest/',
license='LICENSE.txt',
description='Generate gene and species trees from thousands of loci or across genomic alignments.',
long_description=open('README.rst').read(),
test_suite='tests',
install_requires=[
"mrjob >= 0.2.8",
"flask >= 0.8",
"flask-wtf >= 0.5.2",
"numpy >= 1.6.1",
"rpy2 >= 2.2"
],
packages=[
'cloudforest',
'cloudforest.tests',
'cloudforest.webapp',
],
package_data = {
'':['*.txt'],
'cloudforest':[
'tests/alignments/*.oneliners',
'tests/alignments/*.phylip',
'tests/alignments/nexus_primates/*',
'tests/alignments/phylip_primates/*',
'webapp/static/images/*',
'webapp/static/javascripts/*',
'webapp/static/stylesheets/*',
'webapp/templates/*'
]
},
include_package_data = True,
scripts = [
'cloudforest/nexus2oneliner.py',
'cloudforest/phylip2oneliner.py',
'cloudforest/process.py'
],
)