-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
39 lines (35 loc) · 1.22 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
36
37
38
39
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
pytest = "*"
responses = "*"
fluidly-flask = {editable = true, path = "./fluidly-flask"}
fluidly-auth = {editable = true, path = "./fluidly-auth"}
fluidly-pubsub = {editable = true, path = "./fluidly-pubsub"}
fluidly-structlog = {editable = true, path = "./fluidly-structlog"}
fluidly-fastapi = {editable = true, path = "./fluidly-fastapi"}
fluidly-generic-delete = {editable = true, path = "./fluidly-generic-delete"}
fluidly-generic-query = {editable = true, path = "./fluidly-generic-query"}
fluidly-sqlalchemy = {editable = true, path = "./fluidly-sqlalchemy"}
fluidly-pipenv = {editable = true, path = "./fluidly-pipenv"}
freezegun = "*"
autoflake = "*"
black = "*"
isort = "*"
flake8 = "*"
mypy = "*"
types-setuptools = "*"
types-requests = "*"
[dev-packages]
twine = "*"
bumpversion = "*"
pre-commit = "*"
[requires]
python_version = "3.9"
[scripts]
setup = "bash -c \"pre-commit install\""
format = "bash -c \"autoflake --remove-all-unused-imports -i -r . && isort . && black .\""
lint = "bash -c \"flake8 fluidly-*\""
type_check = "bash -c \"ls -d fluidly-* | grep -Ev 'generic-delete|generic-query' | xargs -t -I {} pipenv run mypy {}/fluidly\""