-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPipfile
More file actions
91 lines (74 loc) · 2.27 KB
/
Pipfile
File metadata and controls
91 lines (74 loc) · 2.27 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
########################################
#
# Core packages used in development.
#
########################################
black = "22.8"
# These are < 1.0, pin a specific version.
# These are not semver, pin a specific version.
########################################
#
# Dependencies of scope.
#
########################################
boto3 = "1.24.*"
faker = "13.15.*"
numpy = "1.23.*"
pyjwt = "2.4.*"
pymongo = "4.2.*"
pytest = "7.1.*"
python-dateutil = "2.8.*"
requests = "2.31.*"
# These are < 1.0, pin a specific version.
jschon = "0.8.3"
lorem = "0.1.1"
pyzipper = "0.3.6"
"ruamel.yaml" = "0.17.21"
# These are not semver, pin a specific version.
pytz = "2024.1"
########################################
#
# Dependencies of aws_infrastructure.
#
########################################
invoke = "1.7.*"
paramiko = "3.4.*"
pipenv = "2023.12.*"
# These are < 1.0, pin a specific version.
colorama = "0.4.6"
python-dotenv = "0.20.0"
# These are not semver, pin a specific version.
########################################
#
# scope and aws_infrastructure.
#
########################################
[packages.scope]
git = "https://github.com/uwscope/scope-web.git"
subdirectory = "scope_shared"
ref = "release/v0.20.0"
editable = true
################################################################################
# When co-developing scope-web, helpful to point at a branch.
################################################################################
# git = "https://github.com/<accountname>/scope-web.git"
# ref = "<branchname>"
################################################################################
[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"