aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-10-21 14:00:43 -0700
committerBryan Newbold <bnewbold@archive.org>2021-10-21 14:00:43 -0700
commitadd401b621068e0a1ebcf181b6040c48194624aa (patch)
treefb916b3f6caab04f137984d474dd022185897cfa /Pipfile
parente1679f1044b94d9ec2a9d3b67c8e12581e2f313c (diff)
downloadgrobid_tei_xml-add401b621068e0a1ebcf181b6040c48194624aa.tar.gz
grobid_tei_xml-add401b621068e0a1ebcf181b6040c48194624aa.zip
pipfile for development
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 0000000..5795844
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,21 @@
+# this pipenv 'Pipfile' is only for development and testing; the library itself
+# has no dependencies beyond the Python 3 standard library
+
+[[source]]
+url = "https://pypi.org/simple"
+verify_ssl = true
+name = "pypi"
+
+[packages]
+
+[dev-packages]
+flake8 = "*"
+flake8-annotations = "*"
+mypy = "*"
+pytest = "*"
+pytest-cov = "*"
+typing_extensions = "*"
+yapf = "*"
+
+[requires]
+python_version = "3.8"