We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d0ffc3 commit d622565Copy full SHA for d622565
.gitignore
@@ -9,3 +9,5 @@ test-data
9
.env
10
raw/
11
processed/
12
+Pipfile
13
+Pipfile.lock
Makefile
@@ -4,8 +4,12 @@
4
download:
5
pipenv run python download.py
6
7
-
8
test:
rm -rf ./test-data/
pipenv run coverage run test.py
pipenv run coverage report -m
+
+ship:
+ rm -rf build/
14
+ pipenv run python setup.py sdist bdist_wheel
15
+ pipenv run twine upload dist/* --skip-existing
Pipfile
@@ -19,6 +19,7 @@ click = "*"
19
jinja2 = "*"
20
census-data-aggregator = "*"
21
census-data-downloader = "*"
22
+twine = "*"
23
24
[requires]
25
python_version = "3.8"
0 commit comments