-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
145 lines (137 loc) · 2.98 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
[wipac:cicd_setup_builder]
python_min = 3.10
python_max = 3.11
package_dirs =
rest_server
web_app
universal_utils
[metadata] # generated by wipac:cicd_setup_builder: name, version, keywords
version = attr: rest_server.__version__
keywords =
WIPAC
IceCube
name = rest-server-web-app-universal-utils
[semantic_release] # fully-generated by wipac:cicd_setup_builder
version_variable = rest_server/__init__.py:__version__,web_app/__init__.py:__version__,universal_utils/__init__.py:__version__
upload_to_pypi = False
patch_without_tag = True
commit_parser = semantic_release.history.emoji_parser
major_emoji = [major]
minor_emoji = [minor]
patch_emoji = [fix], [patch]
branch = master
[options] # generated by wipac:cicd_setup_builder: python_requires, packages
python_requires = >=3.10, <3.12
install_requires =
Deprecated==1.2.14
Flask==2.2.5
Jinja2==3.1.3
MarkupSafe==2.1.5
PyJWT==2.8.0
Unidecode==1.3.8
Werkzeug==2.3.8
aio-pika==9.4.1
aiormq==6.8.0
cachetools==5.3.3
certifi==2024.2.2
cffi==1.16.0
charset-normalizer==3.3.2
click==8.1.7
coloredlogs==15.0.1
cryptography==42.0.5
dacite==1.8.1
dash-bootstrap-components==1.5.0
dash-core-components==2.0.0
dash-html-components==2.0.0
dash-table==5.0.0
dash==2.16.1
dnspython==2.6.1
et-xmlfile==1.1.0
flask-oidc==1.4.0
googleapis-common-protos==1.59.1
grpcio==1.62.1
httplib2==0.22.0
humanfriendly==10.0
idna==3.6
importlib-metadata==6.11.0
itsdangerous==2.0.1
ldap3==2.9.1
motor==3.3.2
multidict==6.0.5
nest-asyncio==1.6.0
numpy==1.26.4
oauth2client==4.1.3
openpyxl==3.1.2
opentelemetry-api==1.23.0
opentelemetry-exporter-jaeger-proto-grpc==1.21.0
opentelemetry-exporter-jaeger-thrift==1.21.0
opentelemetry-exporter-jaeger==1.21.0
opentelemetry-exporter-otlp-proto-common==1.23.0
opentelemetry-exporter-otlp-proto-http==1.23.0
opentelemetry-proto==1.23.0
opentelemetry-sdk==1.23.0
opentelemetry-semantic-conventions==0.44b0
packaging==24.0
pamqp==3.3.0
pandas==2.2.1
plotly==5.20.0
protobuf==4.25.3
pyasn1-modules==0.3.0
pyasn1==0.5.1
pycparser==2.21
pymongo==4.6.2
pyparsing==3.1.2
pypng==0.20220715.0
python-dateutil==2.9.0.post0
pytz==2024.1
qrcode==7.4.2
requests-futures==1.0.1
requests==2.31.0
retrying==1.3.4
rsa==4.9
six==1.16.0
tenacity==8.2.3
thrift==0.16.0
tornado==6.4
typeguard==4.1.5
typing_extensions==4.10.0
tzdata==2024.1
urllib3==2.2.1
visdcc==0.0.50
wipac-dev-tools==1.9.1
wipac-keycloak-rest-services==1.4.66
wipac-rest-tools==1.5.3
wipac-telemetry==0.3.0
wrapt==1.16.0
yarl==1.9.4
zipp==3.18.1
packages = find:
[options.extras_require]
tests =
pytest
pytest-asyncio
pytest-mock
nest-asyncio
mypy =
%(tests)s
[options.package_data] # generated by wipac:cicd_setup_builder: '*'
* = py.typed
[options.packages.find] # generated by wipac:cicd_setup_builder: include/exclude
include =
rest_server
web_app
universal_utils
rest_server.*
web_app.*
universal_utils.*
exclude =
test
tests
doc
docs
resource
resources
example
examples
[tool:pytest]
flake8-ignore = E501 W503