Skip to content

Commit d622565

Browse files
author
sandhya-k
committed
fix
1 parent 5d0ffc3 commit d622565

File tree

4 files changed

+1242
-657
lines changed

4 files changed

+1242
-657
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ test-data
99
.env
1010
raw/
1111
processed/
12+
Pipfile
13+
Pipfile.lock

Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@
44
download:
55
pipenv run python download.py
66

7-
87
test:
98
rm -rf ./test-data/
109
pipenv run coverage run test.py
1110
pipenv run coverage report -m
11+
12+
ship:
13+
rm -rf build/
14+
pipenv run python setup.py sdist bdist_wheel
15+
pipenv run twine upload dist/* --skip-existing

Pipfile

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ click = "*"
1919
jinja2 = "*"
2020
census-data-aggregator = "*"
2121
census-data-downloader = "*"
22+
twine = "*"
2223

2324
[requires]
2425
python_version = "3.8"

0 commit comments

Comments
 (0)