-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
97 lines (89 loc) · 1.86 KB
/
setup.cfg
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
92
93
94
95
96
97
[metadata]
name = sirendb
author = Matt Ullman
author_email = [email protected]
description = Online Database for Outdoor Warning Sirens
[options]
packages = find:
package_dir = = src
include_package_data = True
python_requires = >= 3.9
install_requires =
alembic == 1.5.8
cached-property == 1.5.2
click == 7.1.2
croniter == 1.0.12
flask == 1.1.2
flask-cors == 3.0.10
flask-login == 0.5.0
flask-migrate == 2.7.0
flask-rq2 == 18.3
flask-sqlalchemy == 2.5.1
graphql-core == 3.1.3
greenlet == 3.0.1
hupper == 1.10.2
iniconfig == 1.1.1
itsdangerous == 1.1.0
# importlib-metadata == 4.13.0
jinja2 == 2.11.3
mako == 1.1.4
markupsafe == 1.1.1
psycopg2 == 2.9.9
pygments == 2.8.1
python-dateutil == 2.8.2
python-dotenv == 0.16.0
python-editor == 1.0.4
python-multipart == 0.0.5
pyyaml == 6.0.1
redis == 5.0.1
rq == 1.8.0
rq-scheduler == 0.11.0
selenium == 3.141.0
setuptools == 69.0.3
six == 1.16.0
sqlalchemy == 1.4.4
starlette == 0.14.2
# strawberry-graphql == 0.213.0
strawberry-graphql @ git+https://github.com/staticfox/strawberry@1be9f2ad02651f58f556721bdeef537288469853#egg=strawberry
typing-extensions == 3.7.4.3
urllib3 == 2.1.0
werkzeug == 1.0.1
[options.extras_require]
dev =
attrs == 20.3.0
coverage == 5.5
fakeredis == 2.20.1
flake8 == 7.0.0
freezegun == 1.1.0
mccabe == 0.7.0
packaging == 20.9
pluggy == 0.13.1
py == 1.11.0
pycodestyle == 2.11.1
pyflakes == 3.2.0
pyparsing == 2.4.7
pytest == 7.4.3
sortedcontainers == 2.3.0
toml == 0.10.2
[options.packages.find]
where = src
[tool:pytest]
testpaths =
tests
[flake8]
max-line-length = 120
per-file-ignores =
# imported but unused
__init__.py: F401
exclude =
src/sirendb/migrations
[coverage:run]
source =
sirendb
[coverage:paths]
source =
src
[coverage:report]
show_missing = true
skip_covered = true
skip_empty = true