generated from MITLibraries/python-cli-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
46 lines (42 loc) · 768 Bytes
/
Pipfile
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
35
36
37
38
39
40
41
42
43
44
45
46
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
click = "*"
sentry-sdk = "*"
attrs = "*"
boto3 = "*"
jsonschema = "*"
rfc3339-validator = "*"
smart-open = "*"
lxml = "*"
jsonlines = "*"
pycountry = "*"
pygit2 = "*"
shapely = "*"
requests = "*"
pyaml = "*"
marcalyx = "*"
xmltodict = "*"
[dev-packages]
black = "*"
coveralls = "*"
mypy = "*"
pre-commit = "*"
pytest = "*"
ruff = "*"
ipython = "*"
moto = "*"
types-pygit2 = "*"
types-python-dateutil = "*"
boto3-stubs = {version = "*", extras = ["events", "s3", "sqs"]}
lxml-stubs = "*"
freezegun = "*"
types-jsonschema = "*"
types-pyyaml = "*"
types-requests = "*"
[requires]
python_version = "3.12"
[scripts]
harvester = "python -c \"from harvester.cli import main; main()\""