forked from neherlab/treetime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 698 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Construct time-stamped phylogenies from a precomputed trees
Author: Pavel Sagulenko and Richard Neher
"""
import os
from setuptools import setup
setup(
name = "treetime",
version = "0.1",
author = "Pavel Sagulenko and Richard Neher",
author_email = "pavel.sagulenko@tuebingen.mpg.de",
description = (""),
license = "MIT",
keywords = "Time-stamped phylogenies, evolution",
url = "https://github.com/neherlab/treetime",
packages=['treetime'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Science",
"License :: OSI Approved :: MIT License",
],
)