generated from Hochfrequenz/python_template_repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add autogenerated models * add many-to-many * added init_bo4e to tox * ➕added basic functions, 🧹clean up * added tests * changed tests for fixture and adapted foreign keys, ➕ many-to-many test * added tests for zusatz_attribut * fixed dependencies * Updated readme
- Loading branch information
1 parent
d634a52
commit fb32617
Showing
30 changed files
with
569 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -134,3 +134,7 @@ dmypy.json | |
.vscode/ | ||
|
||
src/_your_package_version.py | ||
|
||
src/borm/models/** | ||
|
||
bo4e_schemas/output/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[pylint] | ||
#run for the code generated files | ||
#know things to be fixed: | ||
disable = | ||
R0801, # disable similar lines | ||
C0114, # disable missing-module-docstring | ||
C0115, # disable missing-class-docstring | ||
W0611, # disable unused-import | ||
C0301, # disable line-too-long ->lines in comments too long | ||
C0302, # disable too-many-lines -> many-many relationship classes | ||
[pylint."MESSAGES CONTROL"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
BO4E-Schema-Tool | ||
BO4E-Python-Generator == 0.0.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.12 | ||
# by the following command: | ||
# | ||
# pip-compile dev_requirements/requirements-init_bo4e.in | ||
# | ||
annotated-types==0.6.0 | ||
# via pydantic | ||
argcomplete==3.2.2 | ||
# via datamodel-code-generator | ||
black==24.4.2 | ||
# via datamodel-code-generator | ||
bo4e-python-generator==0.0.9 | ||
# via -r dev_requirements/requirements-init_bo4e.in | ||
bo4e-schema-tool==0.0.5 | ||
# via -r dev_requirements/requirements-init_bo4e.in | ||
certifi==2024.2.2 | ||
# via requests | ||
cffi==1.16.0 | ||
# via | ||
# cryptography | ||
# pynacl | ||
charset-normalizer==3.3.2 | ||
# via requests | ||
click==8.1.7 | ||
# via | ||
# black | ||
# bo4e-python-generator | ||
# bo4e-schema-tool | ||
colorama==0.4.6 | ||
# via click | ||
cryptography==42.0.5 | ||
# via pyjwt | ||
datamodel-code-generator==0.25.3 | ||
# via bo4e-python-generator | ||
deprecated==1.2.14 | ||
# via pygithub | ||
dnspython==2.5.0 | ||
# via email-validator | ||
email-validator==2.1.0.post1 | ||
# via pydantic | ||
genson==1.2.2 | ||
# via datamodel-code-generator | ||
idna==3.6 | ||
# via | ||
# email-validator | ||
# requests | ||
inflect==5.6.2 | ||
# via datamodel-code-generator | ||
isort==5.13.2 | ||
# via datamodel-code-generator | ||
jinja2==3.1.3 | ||
# via datamodel-code-generator | ||
markupsafe==2.1.5 | ||
# via jinja2 | ||
more-itertools==10.2.0 | ||
# via bo4e-schema-tool | ||
mypy-extensions==1.0.0 | ||
# via black | ||
packaging==23.2 | ||
# via | ||
# black | ||
# datamodel-code-generator | ||
pathspec==0.12.1 | ||
# via black | ||
platformdirs==4.2.0 | ||
# via black | ||
pycparser==2.21 | ||
# via cffi | ||
pydantic[email]==2.7.1 | ||
# via | ||
# bo4e-schema-tool | ||
# datamodel-code-generator | ||
pydantic-core==2.18.2 | ||
# via pydantic | ||
pygithub==2.2.0 | ||
# via bo4e-schema-tool | ||
pyjwt[crypto]==2.8.0 | ||
# via pygithub | ||
pynacl==1.5.0 | ||
# via pygithub | ||
pyyaml==6.0.1 | ||
# via datamodel-code-generator | ||
requests==2.31.0 | ||
# via | ||
# bo4e-schema-tool | ||
# pygithub | ||
typing-extensions==4.9.0 | ||
# via | ||
# pydantic | ||
# pydantic-core | ||
# pygithub | ||
urllib3==2.2.0 | ||
# via | ||
# pygithub | ||
# requests | ||
wrapt==1.16.0 | ||
# via deprecated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.