forked from ngcrawford/CloudForest
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.19 KB
/
Copy pathsetup.py
File metadata and controls
40 lines (39 loc) · 1.19 KB
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
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 using Map-Reduce.',
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"
],
packages=[
'cloudforest',
'cloudforest.test',
'cloudforest.webapp',
],
package_data = {
'':['*.txt'],
'cloudforest':[
'test/alignments/*.oneliners',
'test/alignments/*.phylip',
'test/alignments/nexus_primates/*',
'test/alignments/phylip_primates/*',
'webapp/static/images/*',
'webapp/static/javascripts/*',
'webapp/static/stylesheets/*',
'webapp/templates/*'
]
},
include_package_data = True,
)