-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPipfile
More file actions
29 lines (24 loc) · 841 Bytes
/
Pipfile
File metadata and controls
29 lines (24 loc) · 841 Bytes
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
manchester-code = {editable = true, path = "."}
[dev-packages]
black = "*"
mypy = "*"
pylint = "*"
pytest = "*"
pytest-cov = "*"
# python<3.11 compatibility
# > File "[...]/lib/python3.10/site-packages/_pytest/_code/code.py", line 60, in <module>
# > from exceptiongroup import BaseExceptionGroup
# > ModuleNotFoundError: No module named 'exceptiongroup'
exceptiongroup = {markers = "python_version < '3.11'"}
# > File "[...]/lib/python3.10/site-packages/_pytest/config/findpaths.py", line 71, in load_config_dict_from_file
# > import tomli as tomllib
# > ModuleNotFoundError: No module named 'tomli'
tomli = {markers = "python_version < '3.11'"}
[requires]
python_version = "3"
# Pipfile syntax: https://github.com/pypa/pipfile#pipfile