File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -4,16 +4,18 @@ This package provides various utilities used by the [Delphi group](https://delph
4
4
University] ( https://www.cmu.edu ) for its data pipelines and analyses.
5
5
6
6
Submodules:
7
- - ` validator ` : Data sanity checks and anomaly detection.
8
7
- ` archive ` : Diffing and archiving CSV files.
9
8
- ` export ` : DataFrame to CSV export.
10
9
- ` geomap ` : Mappings between geographic resolutions.
11
10
- ` logger ` : Structured JSON logger.
11
+ - ` nancodes ` : Enum constants encoding not-a-number cases.
12
12
- ` runner ` : Orchestrator for running an indicator pipeline.
13
13
- ` signal ` : Indicator (signal) naming.
14
14
- ` slack_notifier ` : Slack notification integration.
15
15
- ` smooth ` : Data smoothing functions.
16
16
- ` utils ` : JSON parameter interactions.
17
+ - ` validator ` : Data sanity checks and anomaly detection.
18
+
17
19
18
20
Source code can be found here:
19
21
[ https://github.com/cmu-delphi/covidcast-indicators/ ] ( https://github.com/cmu-delphi/covidcast-indicators/ )
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
from setuptools import find_packages
3
3
4
+ with open ("README.md" , "r" ) as f :
5
+ long_description = f .read ()
6
+
4
7
required = [
5
8
"boto3" ,
6
9
"covidcast" ,
23
26
name = "delphi_utils" ,
24
27
version = "0.1.0" ,
25
28
description = "Shared Utility Functions for Indicators" ,
29
+ long_description = long_description ,
30
+ long_description_content_type = "text/markdown" ,
26
31
author = "" ,
27
32
author_email = "" ,
28
33
url = "https://github.com/cmu-delphi/" ,
You can’t perform that action at this time.
0 commit comments