-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 732 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 732 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
with open('lagrange/VERSION') as f: VERSION = f.read().strip()
description = '''\
Lagrange is a Python package implementing likelihood models for
geographic range evolution on phylogenetic trees, with methods for
inferring rates of dispersal and local extinction and ancestral
ranges.'''
setup(
name='Lagrange',
description='Likelihood analysis of geographic range evolution',
license='GPL',
platforms='ALL',
long_description=description,
version=VERSION,
author='Richard Ree',
author_email='rree@fieldmuseum.org',
url='https://github.com/rhr/lagrange-python',
packages=['lagrange'],
package_data={'lagrange': ['VERSION']}
)