-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPipfile
48 lines (43 loc) · 917 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
47
48
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
black = "*"
coverage = {extras = ["toml"],version = "*"}
flake8 = "*"
flake8-bugbear = "*"
mypy = "*"
pika-stubs = "*"
pytest = "*"
pytest-cov = "*"
pytest-freezegun = "*"
types-python-dateutil = "*"
responses = "*"
[packages]
colorlog = "~=6.9"
flask = "~=3.0"
flask-apscheduler = "~=1.13"
gunicorn = "~=23.0"
more-itertools = "~=10.5"
mysql-connector-python = "~=9.0"
pandas = "~=2.0"
pika = "~=1.3"
pymongo = "~=4.10"
pymysql = "~=1.1"
pyodbc = "~=5.2"
pysftp = "~=0.2"
python-dotenv = "~=1.0"
requests = "~=2.32"
slackclient = "~=2.9"
sqlalchemy = "~=2.0"
lab-share-lib = { git = 'https://github.com/sanger/lab-share-lib.git', ref = 'v0.2.0', editable = false }
[requires]
python_version = "3.8"
[pipenv]
allow_prereleases = true
[scripts]
black = 'black'
mypy = 'mypy'
flake8 = 'flake8'
test = 'python -m pytest -vx'