forked from nextstrain/augur
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (65 loc) · 2.21 KB
/
setup.py
File metadata and controls
67 lines (65 loc) · 2.21 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<<<<<<< .merge_file_unrNfV
import os
from setuptools import setup
setup(
name = "augur",
version = "0.1.0",
author = "nextstrain developers",
author_email = "trevor@bedford.io, richard.neher@unibas.ch",
description = ("Pipelines for real-time phylogenetic analysis"),
license = "MIT",
keywords = "nextstrain, molecular epidemiology",
url = "https://github.com/nextstrain/augur",
packages=['augur'],
package_data={'augur': ['data/*']},
install_requires = [
"bcbio-gff >=0.6.4, ==0.6.*",
"biopython >=1.69, ==1.*",
"boto >=2.38, ==2.*",
"cvxopt >=1.1.8, ==1.1.*",
"ipdb >=0.10.1",
"jsonschema ==3.0.0a1",
"matplotlib >=2.0, ==2.*",
"pandas >=0.17.1",
"pytest >=3.2.1, ==3.*",
"seaborn >=0.6.0, ==0.6.*",
"snakemake >=5.1.5, ==5.*",
"tox >=2.8.2, ==2.*",
"treetime ==0.4.1"
],
dependency_links = [
"https://api.github.com/repos/neherlab/treetime/tarball/v0.4.1#egg=treetime-0.4.1",
"git+https://github.com/Julian/jsonschema.git@9632422aa90cb1fbfbbb141954ef6d06437b0801#egg=jsonschema-3.0.0a1"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Science",
"License :: OSI Approved :: MIT License",
],
scripts=['bin/augur']
)
=======
"""
Pipeline components for real-time virus analysis
Author: Richard Neher and Trevor Bedford
"""
import os
from setuptools import setup, find_packages
setup(
name = "augur",
version = "1.0.0",
author = "Richard Neher and Trevor Bedford",
author_email = "trevor@bedford.io",
description = ("Pipeline components for real-time virus analysis"),
license = "GNU Affero General Public License v3.0",
keywords = "",
url = "https://github.com/nextstrain/augur",
packages=find_packages(where='src'),
package_dir={"": "src"},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Science",
"License :: GNU Affero General Public License v3.0",
]
)
>>>>>>> .merge_file_fUdj8V