-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (36 loc) · 838 Bytes
/
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
42
43
44
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
from covate import version
requirements = [
"cycler",
"kiwisolver",
"matplotlib",
"numpy",
"pandas",
"patsy",
"Pillow",
"pyparsing",
"python-dateutil",
"pytz",
"scipy",
"six",
"statsmodels"
]
setuptools.setup(
name="covate",
version=version.__version__,
url="https://github.com/Pathogen-Genomics-Cymru/covate",
description="Predicts time series for SARS-Cov-2 lineages",
author="Anna Price",
author_email="PriceA35@cardiff.ac.uk",
packages=setuptools.find_packages(),
install_requires=requirements,
include_package_data=True,
package_data={'': ['static/*']},
entry_points = {
'console_scripts': [
'covate = covate.covate:main',
]
},
)