forked from covid-19-impact-lab/utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1 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
from setuptools import find_packages
from setuptools import setup
p = find_packages()
print(p)
setup(
name="utilities",
version="0.4.2",
description=(
"Package with code that has to be shared across repos of covid-19-impact-lab"
),
license="MIT",
url="https://github.com/covid-19-impact-lab/covidlab-utilities",
author="COVID-19 Impact Lab",
author_email="[email protected]",
packages=p,
zip_safe=False,
package_data={
"utilities": [
"dashboard/app/static/*.*",
"dashboard/app/templates/*.html",
"dashboard/*/*.txt",
"dashboard/*/*.csv",
"dashboard/*/*.yaml",
"dashboard/*/*.py",
"dashboard/components/intro_page/metadata/*/*.*",
"dashboard/components/run_charts/metadata/*.*",
"dashboard/components/boxplots/metadata/*.*",
"dashboard/components/univariate_distributions/metadata/*.*",
],
},
include_package_data=True,
)