-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
41 lines (36 loc) · 1.25 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
# ----------------------------------------------------------------------------
# Copyright (c) 2021-, Andersen Lab development team.
#
# Distributed under the terms of the BSD 2-Clause License
#
# The full license is in the file LICENSE, distributed with this software.
# ----------------------------------------------------------------------------
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
description = ("Freyja recovers relative lineage abundances from mixed "
"SARS-CoV-2 samples")
setup(
name="freyja",
version="2021.10",
packages=find_packages(),
author="Joshua Levy",
license='BSD 2-Clause',
author_email="[email protected]",
url="https://github.com/joshuailevy/freyja",
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
entry_points='''
[console_scripts]
freyja=freyja._cli:cli
''',
package_data={
'freyja': ['data/*', ],
},
install_requires=[
"click", "numpy", "pandas", "cvxpy", "seaborn", "pysam",
"biopython", "sphinx", "sphinx_rtd_theme",
"sphinx-click @ git+https://github.com/dylanpilz/sphinx-click.git"
]
)