-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPipfile
35 lines (28 loc) · 1.03 KB
/
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
################################################################################
# Defines dependencies only for the top-level tasks.
# Python-based sub-projects each include their own Pipfile.
################################################################################
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
black = "*"
pymongo="*"
pytest = "*"
[packages.scope]
editable = true
path = "./scope_shared"
[packages.aws_infrastructure]
git = "https://github.com/fogies/aws-infrastructure.git"
subdirectory = "aws_infrastructure"
editable = true
################################################################################
# When co-developing aws-infrastructure, helpful to point at a branch.
################################################################################
# git = "https://github.com/<accountname>/aws-infrastructure.git"
# ref = "<branchname>"
################################################################################
[dev-packages]
[requires]
python_version = "3.9"