Skip to content

Commit 32862c4

Browse files
committed
[client] Structure requirements for Filigran alignements
1 parent 36803a0 commit 32862c4

File tree

3 files changed

+29
-12
lines changed

3 files changed

+29
-12
lines changed

pyobas/apis/endpoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Dict, List
1+
from typing import Any, Dict
22

33
from pyobas import exceptions as exc
44
from pyobas.base import RESTManager, RESTObject

requirements.txt

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1-
PyYAML~=6.0
2-
requests~=2.32.2
1+
# Filigran
32
datefinder~=0.7.3
4-
requests-toolbelt~=1.0.0
5-
dataclasses-json~=0.6.4
63
pika~=1.3.0
7-
python_json_logger~=2.0.4
4+
python-magic~=0.4.27; sys_platform == 'linux' or sys_platform == 'darwin'
5+
python-magic-bin~=0.4.14; sys_platform == 'win32'
6+
python_json_logger~=2.0.4
7+
PyYAML~=6.0
8+
requests~=2.31.0
9+
setuptools~=70.0.0
10+
cachetools~=5.3.0
11+
prometheus-client~=0.20.0
12+
opentelemetry-api~=1.22.0
13+
opentelemetry-sdk~=1.22.0
14+
# OpenBAS
15+
requests-toolbelt~=1.0.0
16+
dataclasses-json~=0.6.4

setup.cfg

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,22 @@ packages =
3232

3333
include_package_data = True
3434
install_requires =
35-
dataclasses-json~=0.6.4
36-
pika~=1.3.1
37-
prometheus-client~=0.20.0
35+
# Filigran
36+
datefinder~=0.7.3
37+
pika~=1.3.0
38+
python-magic~=0.4.27; sys_platform == 'linux' or sys_platform == 'darwin'
39+
python-magic-bin~=0.4.14; sys_platform == 'win32'
3840
python_json_logger~=2.0.4
39-
pyyaml~=6.0
40-
requests~=2.32.2
41-
requests-toolbelt~=1.0.0
41+
PyYAML~=6.0
42+
requests~=2.31.0
4243
setuptools~=70.0.0
44+
cachetools~=5.3.0
45+
prometheus-client~=0.20.0
46+
opentelemetry-api~=1.22.0
47+
opentelemetry-sdk~=1.22.0
48+
# OpenBAS
49+
requests-toolbelt~=1.0.0
50+
dataclasses-json~=0.6.4
4351

4452
[options.extras_require]
4553
dev =

0 commit comments

Comments
 (0)