meta-edc 0.3.36__py3-none-any.whl → 0.3.38__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.
Files changed (37) hide show
  1. meta_analytics/__init__.py +1 -1
  2. meta_analytics/dataframes/__init__.py +1 -0
  3. meta_analytics/dataframes/constants.py +1 -1
  4. meta_analytics/dataframes/get_eos_df.py +26 -0
  5. meta_analytics/dataframes/glucose_endpoints/glucose_endpoints_by_date.py +102 -79
  6. meta_analytics/dataframes/screening/get_screening_df.py +42 -6
  7. meta_analytics/get_tables.py +4 -28
  8. meta_edc/settings/debug.py +2 -2
  9. meta_edc-0.3.38.dist-info/METADATA +766 -0
  10. {meta_edc-0.3.36.dist-info → meta_edc-0.3.38.dist-info}/RECORD +36 -20
  11. {meta_edc-0.3.36.dist-info → meta_edc-0.3.38.dist-info}/WHEEL +1 -1
  12. meta_pharmacy/admin/__init__.py +3 -0
  13. meta_pharmacy/admin/label_admin.py +0 -0
  14. meta_pharmacy/admin/lot_number_admin.py +43 -0
  15. meta_pharmacy/admin/rx_admin.py +75 -0
  16. meta_pharmacy/{admin.py → admin/substitutions_admin.py} +3 -71
  17. meta_pharmacy/labels/__init__.py +2 -0
  18. meta_pharmacy/labels/get_label_data.py +30 -0
  19. meta_pharmacy/labels/print_sheets.py +86 -0
  20. meta_pharmacy/migrations/0006_lotnumber_label.py +289 -0
  21. meta_pharmacy/migrations/0007_lotnumber_medication.py +24 -0
  22. meta_pharmacy/models/__init__.py +4 -0
  23. meta_pharmacy/models/label.py +50 -0
  24. meta_pharmacy/models/lot_number.py +25 -0
  25. meta_pharmacy/models/rx.py +18 -0
  26. meta_pharmacy/{models.py → models/substitutions.py} +2 -16
  27. meta_reports/admin/endpoints_admin.py +1 -1
  28. meta_reports/admin/modeladmin_mixins.py +5 -5
  29. meta_reports/migrations/0050_alter_endpoints_created.py +19 -0
  30. meta_reports/migrations/0051_remove_endpoints_baseline_datetime_and_more.py +40 -0
  31. meta_reports/models/dbviews/imp_substitutions/unmanaged_model.py +3 -1
  32. meta_reports/models/endpoints.py +3 -3
  33. meta_visit_schedule/visit_schedules/phase_three/crfs.py +1 -0
  34. meta_edc-0.3.36.dist-info/METADATA +0 -94
  35. {meta_edc-0.3.36.dist-info → meta_edc-0.3.38.dist-info}/AUTHORS +0 -0
  36. {meta_edc-0.3.36.dist-info → meta_edc-0.3.38.dist-info}/LICENSE +0 -0
  37. {meta_edc-0.3.36.dist-info → meta_edc-0.3.38.dist-info}/top_level.txt +0 -0
@@ -1,94 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: meta-edc
3
- Version: 0.3.36
4
- Summary: META Trial EDC (http://www.isrctn.com/ISRCTN76157257)
5
- Home-page: https://github.com/meta-trial/meta-edc
6
- Author: Erik van Widenfelt
7
- Author-email: ew2789@gmail.com
8
- License: GPL license, see LICENSE
9
- Keywords: django edc META EDC,clinicedc,clinical trials
10
- Classifier: Environment :: Web Environment
11
- Classifier: Framework :: Django
12
- Classifier: Framework :: Django :: 4.2
13
- Classifier: Framework :: Django :: 5.1
14
- Classifier: Intended Audience :: Developers
15
- Classifier: Intended Audience :: Science/Research
16
- Classifier: Operating System :: OS Independent
17
- Classifier: Programming Language :: Python :: 3.12
18
- Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
19
- Requires-Python: >=3.12
20
- Description-Content-Type: text/x-rst
21
- License-File: LICENSE
22
- License-File: AUTHORS
23
- Requires-Dist: edc ==0.6.11
24
- Requires-Dist: edc-microscopy
25
- Requires-Dist: beautifulsoup4
26
- Requires-Dist: edc-analytics
27
- Requires-Dist: celery[redis]
28
- Requires-Dist: Django ==5.1
29
-
30
- |pypi| |actions| |codecov| |downloads|
31
-
32
-
33
- META Edc
34
- --------
35
-
36
- Metformin treatment in Africa- META
37
-
38
- * https://www.ucl.ac.uk/global-health/research/z-research/respond-africa/metformin-treatment-africa-meta
39
- * https://www.inteafrica.org/related-projects/meta-trial/
40
- * https://www.lstmed.ac.uk/research/departments/international-public-health/respond-africa/meta
41
- * http://www.isrctn.com/ISRCTN76157257
42
-
43
- py 3.12 / DJ 5.1 / edc 0.6.0 (META3)
44
-
45
- This codebase is used for two randomized clinical trials:
46
-
47
- ____
48
-
49
- META PHASE II:
50
-
51
- (final version `0.1.77 <https://github.com/meta-trial/meta-edc/tree/0.1.77>`_)
52
-
53
- Metformin Treatment for Diabetes Prevention in Africa: META Trial
54
- TASO, MRC/UVRI/LSHTM, NIMR – TZ and Liverpool School of Tropical Medicine (ISRCTN76157257)
55
- http://www.isrctn.com/ISRCTN76157257
56
-
57
- ____
58
-
59
- META PHASE III:
60
-
61
- A randomised placebo-controlled double-blind phase III trial to determine the effects of metformin versus placebo on the incidence of diabetes in HIV-infected persons with pre-diabetes in Tanzania.
62
-
63
- Liverpool School of Tropical Medicine
64
-
65
- EDCTP grant number: RIA2018CO-2513
66
-
67
- Trial registration: ISCRTN 77382043
68
-
69
- https://ico.org.uk/ESDWebPages/Entry/Z4763134
70
-
71
- ____
72
-
73
- See also https://github.com/clinicedc/edc
74
-
75
- |django|
76
-
77
- To setup a demo system, see https://github.com/meta-trial/meta3-sample
78
-
79
-
80
- .. |pypi| image:: https://img.shields.io/pypi/v/meta-edc.svg
81
- :target: https://pypi.python.org/pypi/meta-edc
82
-
83
- .. |actions| image:: https://github.com/meta-trial/meta-edc/actions/workflows/build.yml/badge.svg
84
- :target: https://github.com/meta-trial/meta-edc/actions/workflows/build.yml
85
-
86
- .. |codecov| image:: https://codecov.io/gh/meta-trial/meta-edc/branch/develop/graph/badge.svg
87
- :target: https://codecov.io/gh/meta-trial/meta-edc
88
-
89
- .. |downloads| image:: https://pepy.tech/badge/meta-edc
90
- :target: https://pepy.tech/project/meta-edc
91
-
92
- .. |django| image:: https://www.djangoproject.com/m/img/badges/djangomade124x25.gif
93
- :target: http://www.djangoproject.com/
94
- :alt: Made with Django