edc-vitals 0.1.13__py3-none-any.whl → 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- edc_vitals/tests/test_settings.py +63 -0
- edc_vitals-1.0.0.dist-info/AUTHORS +1 -0
- {edc_vitals-0.1.13.dist-info → edc_vitals-1.0.0.dist-info}/METADATA +7 -7
- {edc_vitals-0.1.13.dist-info → edc_vitals-1.0.0.dist-info}/RECORD +7 -6
- {edc_vitals-0.1.13.dist-info → edc_vitals-1.0.0.dist-info}/WHEEL +1 -1
- edc_vitals-0.1.13.dist-info/AUTHORS +0 -1
- {edc_vitals-0.1.13.dist-info → edc_vitals-1.0.0.dist-info}/LICENSE +0 -0
- {edc_vitals-0.1.13.dist-info → edc_vitals-1.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,63 @@
|
|
1
|
+
#!/usr/bin/env python
|
2
|
+
import sys
|
3
|
+
from pathlib import Path
|
4
|
+
|
5
|
+
from edc_test_settings.default_test_settings import DefaultTestSettings
|
6
|
+
|
7
|
+
app_name = "edc_vitals"
|
8
|
+
base_dir = Path(__file__).absolute().parent.parent.parent
|
9
|
+
|
10
|
+
project_settings = DefaultTestSettings(
|
11
|
+
calling_file=__file__,
|
12
|
+
BASE_DIR=base_dir,
|
13
|
+
APP_NAME=app_name,
|
14
|
+
ETC_DIR=base_dir / app_name / "tests" / "etc",
|
15
|
+
SILENCED_SYSTEM_CHECKS=[
|
16
|
+
"sites.E101",
|
17
|
+
"edc_navbar.E002",
|
18
|
+
"edc_navbar.E003",
|
19
|
+
"edc_consent.E001",
|
20
|
+
"edc_sites.E001",
|
21
|
+
"edc_sites.E002",
|
22
|
+
],
|
23
|
+
SUBJECT_VISIT_MODEL="edc_visit_tracking.subjectvisit",
|
24
|
+
INSTALLED_APPS=[
|
25
|
+
"django.contrib.admin",
|
26
|
+
"django.contrib.auth",
|
27
|
+
"django.contrib.contenttypes",
|
28
|
+
"django.contrib.sessions",
|
29
|
+
"django.contrib.messages",
|
30
|
+
"django.contrib.staticfiles",
|
31
|
+
"django.contrib.sites",
|
32
|
+
"django_crypto_fields.apps.AppConfig",
|
33
|
+
# "django_revision.apps.AppConfig",
|
34
|
+
"multisite",
|
35
|
+
"edc_action_item.apps.AppConfig",
|
36
|
+
"edc_appointment.apps.AppConfig",
|
37
|
+
"edc_auth.apps.AppConfig",
|
38
|
+
"edc_data_manager.apps.AppConfig",
|
39
|
+
"edc_device.apps.AppConfig",
|
40
|
+
"edc_facility.apps.AppConfig",
|
41
|
+
"edc_form_runners.apps.AppConfig",
|
42
|
+
"edc_identifier.apps.AppConfig",
|
43
|
+
"edc_lab.apps.AppConfig",
|
44
|
+
"edc_label.apps.AppConfig",
|
45
|
+
"edc_locator.apps.AppConfig",
|
46
|
+
"edc_metadata.apps.AppConfig",
|
47
|
+
"edc_notification.apps.AppConfig",
|
48
|
+
"edc_offstudy.apps.AppConfig",
|
49
|
+
"edc_registration.apps.AppConfig",
|
50
|
+
"edc_sites.apps.AppConfig",
|
51
|
+
"edc_timepoint.apps.AppConfig",
|
52
|
+
"edc_visit_schedule.apps.AppConfig",
|
53
|
+
"edc_visit_tracking.apps.AppConfig",
|
54
|
+
"edc_vitals.apps.AppConfig",
|
55
|
+
"edc_appconfig.apps.AppConfig",
|
56
|
+
],
|
57
|
+
use_test_urls=True,
|
58
|
+
add_dashboard_middleware=True,
|
59
|
+
).settings
|
60
|
+
|
61
|
+
|
62
|
+
for k, v in project_settings.items():
|
63
|
+
setattr(sys.modules[__name__], k, v)
|
@@ -0,0 +1 @@
|
|
1
|
+
Erik van Widenfelt <ew2789@gmail.com>
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: edc-vitals
|
3
|
-
Version: 0.
|
3
|
+
Version: 1.0.0
|
4
4
|
Summary: Classes for BP, weight, etc for clinicedc/edc projects
|
5
5
|
Home-page: https://github.com/clinicedc/edc-vitals
|
6
6
|
Author: Erik van Widenfelt
|
@@ -9,13 +9,13 @@ License: GPL license, see LICENSE
|
|
9
9
|
Keywords: django edc vitals,clinicedc,clinical trials
|
10
10
|
Classifier: Environment :: Web Environment
|
11
11
|
Classifier: Framework :: Django
|
12
|
-
Classifier: Framework :: Django ::
|
12
|
+
Classifier: Framework :: Django :: 5.1
|
13
13
|
Classifier: Intended Audience :: Developers
|
14
14
|
Classifier: Intended Audience :: Science/Research
|
15
15
|
Classifier: Operating System :: OS Independent
|
16
|
-
Classifier: Programming Language :: Python :: 3.
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
17
17
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
18
|
-
Requires-Python: >=3.
|
18
|
+
Requires-Python: >=3.12
|
19
19
|
Description-Content-Type: text/x-rst
|
20
20
|
License-File: LICENSE
|
21
21
|
License-File: AUTHORS
|
@@ -45,8 +45,8 @@ Settings:
|
|
45
45
|
.. |pypi| image:: https://img.shields.io/pypi/v/edc-vitals.svg
|
46
46
|
:target: https://pypi.python.org/pypi/edc-vitals
|
47
47
|
|
48
|
-
.. |actions| image:: https://github.com/clinicedc/edc-vitals/workflows/build/badge.svg
|
49
|
-
:target: https://github.com/clinicedc/edc-vitals/actions
|
48
|
+
.. |actions| image:: https://github.com/clinicedc/edc-vitals/actions/workflows/build.yml/badge.svg
|
49
|
+
:target: https://github.com/clinicedc/edc-vitals/actions/workflows/build.yml
|
50
50
|
|
51
51
|
.. |codecov| image:: https://codecov.io/gh/clinicedc/edc-vitals/branch/develop/graph/badge.svg
|
52
52
|
:target: https://codecov.io/gh/clinicedc/edc-vitals
|
@@ -20,6 +20,7 @@ edc_vitals/models/fields/waist_circumference.py,sha256=fZcHFDdEwWLjIVLktKrFCD9UU
|
|
20
20
|
edc_vitals/models/fields/weight.py,sha256=zo9_9e3Cpu0UqoRbWS-iDkcDo6fK80b1dDQy4x4MyxE,921
|
21
21
|
edc_vitals/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
edc_vitals/tests/models.py,sha256=B5FfPyDjdFiDDET4MJKOS4ayd9_xs1fTGFFU4ndH8H4,961
|
23
|
+
edc_vitals/tests/test_settings.py,sha256=cfPbFKBZSgRp-j7bmS94958-8L__CTWDa2kq8_Ujv5E,2000
|
23
24
|
edc_vitals/tests/urls.py,sha256=NR4c2ybRQNjbtJwi-PTsYB9oacVuVZsIRHo7ZnA0WIc,118
|
24
25
|
edc_vitals/tests/etc/user-aes-local.key,sha256=Ze3FgWOEWqW7NWRKgdRXH7MDt29ZdIhcPK72uCJr-T0,256
|
25
26
|
edc_vitals/tests/etc/user-aes-restricted.key,sha256=I5r9SVVv1vHrIhCcecOK5gLpzvi7bqSEFG8br3tKVOQ,256
|
@@ -35,9 +36,9 @@ edc_vitals/tests/tests/test_heart_rate.py,sha256=0-FpuWg1iDSRw6EmfFhH8u4OmvH9o1S
|
|
35
36
|
edc_vitals/tests/tests/test_respiratory_rate.py,sha256=-R7XIIw6gHd0u69AHdOcEgFjLQrjdYdsGbf7B3d_GwU,1906
|
36
37
|
edc_vitals/tests/tests/test_temperature.py,sha256=KYK-PrvCQIsNUPajUhl0R1FmuspwEYhxIZtc-TKgRjc,3518
|
37
38
|
edc_vitals/tests/tests/test_weight_height_bmi.py,sha256=aMlxxvdbeNAKX8IMp6x6zxRmjd3oL_mO8nCE06vyBV4,2322
|
38
|
-
edc_vitals-0.
|
39
|
-
edc_vitals-0.
|
40
|
-
edc_vitals-0.
|
41
|
-
edc_vitals-0.
|
42
|
-
edc_vitals-0.
|
43
|
-
edc_vitals-0.
|
39
|
+
edc_vitals-1.0.0.dist-info/AUTHORS,sha256=6jjF41GocVpG01NLt55LeDKdjuwuDdA77fb_MENCTOk,38
|
40
|
+
edc_vitals-1.0.0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
41
|
+
edc_vitals-1.0.0.dist-info/METADATA,sha256=teumq6ZayizP9sgiQ7aRLFY4CT6cSoDkwFCv_5wl_ZE,1757
|
42
|
+
edc_vitals-1.0.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
43
|
+
edc_vitals-1.0.0.dist-info/top_level.txt,sha256=hwo2JnqOF-wcBFoQz-fEhszjPca4sZ9a3QDF7BHGFhI,11
|
44
|
+
edc_vitals-1.0.0.dist-info/RECORD,,
|
@@ -1 +0,0 @@
|
|
1
|
-
Erik van Widenfelt <ew2789@gmail.com>
|
File without changes
|
File without changes
|