endoreg-db 0.1.0__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.
- endoreg_db-0.1.0/PKG-INFO +19 -0
- endoreg_db-0.1.0/README.md +4 -0
- endoreg_db-0.1.0/endoreg_db/__init__.py +0 -0
- endoreg_db-0.1.0/endoreg_db/admin.py +3 -0
- endoreg_db-0.1.0/endoreg_db/apps.py +6 -0
- endoreg_db-0.1.0/endoreg_db/migrations/__init__.py +0 -0
- endoreg_db-0.1.0/endoreg_db/models.py +3 -0
- endoreg_db-0.1.0/endoreg_db/tests.py +3 -0
- endoreg_db-0.1.0/endoreg_db/views.py +3 -0
- endoreg_db-0.1.0/pyproject.toml +18 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: endoreg-db
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: EndoReg projects db backend
|
|
5
|
+
License: GNU v3
|
|
6
|
+
Author: Thomas J. Lux
|
|
7
|
+
Requires-Python: >=3.11,<4.0
|
|
8
|
+
Classifier: License :: Other/Proprietary License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Requires-Dist: pillow (>=10.2.0,<11.0.0)
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# Usage
|
|
17
|
+
## instantiate environment without project:
|
|
18
|
+
|
|
19
|
+
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "endoreg-db"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "EndoReg projects db backend"
|
|
5
|
+
authors = ["Thomas J. Lux"]
|
|
6
|
+
license = "GNU v3"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
|
|
9
|
+
[tool.poetry.dependencies]
|
|
10
|
+
python = "^3.11"
|
|
11
|
+
pillow = "^10.2.0"
|
|
12
|
+
|
|
13
|
+
[tool.poetry.group.dev.dependencies]
|
|
14
|
+
pytest = "^8.0.0"
|
|
15
|
+
|
|
16
|
+
[build-system]
|
|
17
|
+
requires = ["poetry-core"]
|
|
18
|
+
build-backend = "poetry.core.masonry.api"
|