datajunction-reflection 0.0.1a105__tar.gz → 0.0.1a107__tar.gz

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.

Potentially problematic release.


This version of datajunction-reflection might be problematic. Click here for more details.

Files changed (28) hide show
  1. datajunction_reflection-0.0.1a107/Dockerfile +15 -0
  2. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/PKG-INFO +3 -4
  3. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/datajunction_reflection/__about__.py +1 -1
  4. datajunction_reflection-0.0.1a107/pdm.lock +1321 -0
  5. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/pyproject.toml +2 -3
  6. datajunction_reflection-0.0.1a105/Dockerfile +0 -4
  7. datajunction_reflection-0.0.1a105/pdm.lock +0 -1276
  8. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/.coveragerc +0 -0
  9. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/.flake8 +0 -0
  10. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/.gitignore +0 -0
  11. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/.isort.cfg +0 -0
  12. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/.pre-commit-config.yaml +0 -0
  13. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/.pylintrc +0 -0
  14. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/CODE_OF_CONDUCT.md +0 -0
  15. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/LICENSE +0 -0
  16. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/Makefile +0 -0
  17. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/README.md +0 -0
  18. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/datajunction_reflection/__init__.py +0 -0
  19. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/datajunction_reflection/config.py +0 -0
  20. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/datajunction_reflection/worker/__init__.py +0 -0
  21. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/datajunction_reflection/worker/app.py +0 -0
  22. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/datajunction_reflection/worker/tasks.py +0 -0
  23. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/datajunction_reflection/worker/utils.py +0 -0
  24. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/setup.cfg +0 -0
  25. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/tests/__init__.py +0 -0
  26. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/tests/conftest.py +0 -0
  27. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/tests/test_tasks.py +0 -0
  28. {datajunction_reflection-0.0.1a105 → datajunction_reflection-0.0.1a107}/tox.ini +0 -0
@@ -0,0 +1,15 @@
1
+ FROM python:3.11-slim
2
+
3
+ RUN addgroup --system celery && \
4
+ adduser --system --ingroup celery --home /code celery
5
+
6
+ WORKDIR /code
7
+
8
+ COPY . .
9
+
10
+ RUN pip install --no-cache-dir -e .
11
+
12
+ RUN chown -R celery:celery /code
13
+ USER celery
14
+
15
+ CMD ["celery", "--app", "datajunction_reflection.celery_app", "beat", "--loglevel=info"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: datajunction-reflection
3
- Version: 0.0.1a105
3
+ Version: 0.0.1a107
4
4
  Summary: OSS Implementation of a DataJunction Reflection Service
5
5
  Project-URL: repository, https://github.com/DataJunction/dj
6
6
  Author-email: DataJunction Authors <roberto@dealmeida.net>
@@ -8,16 +8,15 @@ License: MIT
8
8
  License-File: LICENSE
9
9
  Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Operating System :: OS Independent
11
- Classifier: Programming Language :: Python :: 3.8
12
- Classifier: Programming Language :: Python :: 3.9
13
11
  Classifier: Programming Language :: Python :: 3.10
14
12
  Classifier: Programming Language :: Python :: 3.11
15
13
  Classifier: Programming Language :: Python :: 3.12
16
- Requires-Python: <4.0,>=3.8
14
+ Requires-Python: <4.0,>=3.10
17
15
  Requires-Dist: celery[redis]>=5.2.3
18
16
  Requires-Dist: importlib-metadata
19
17
  Requires-Dist: pydantic<2.0
20
18
  Requires-Dist: python-dotenv==0.19.2
19
+ Requires-Dist: pytz
21
20
  Requires-Dist: requests>=2.26.0
22
21
  Provides-Extra: uvicorn
23
22
  Requires-Dist: uvicorn[standard]>=0.21.1; extra == 'uvicorn'
@@ -2,4 +2,4 @@
2
2
  Version for Hatch
3
3
  """
4
4
 
5
- __version__ = "0.0.1a105"
5
+ __version__ = "0.0.1a107"