-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ronny Vedrilla
committed
Nov 3, 2023
1 parent
ea65f43
commit 78d8add
Showing
100 changed files
with
904 additions
and
903 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,19 +10,19 @@ | |
from ambient_package_update.metadata.ruff_ignored_inspection import RuffIgnoredInspection | ||
|
||
METADATA = PackageMetadata( | ||
package_name='ambient_toolbox', | ||
company='Ambient Innovation: GmbH', | ||
package_name="ambient_toolbox", | ||
company="Ambient Innovation: GmbH", | ||
authors=[ | ||
PackageAuthor( | ||
name='Ambient Digital', | ||
email='[email protected]', | ||
name="Ambient Digital", | ||
email="[email protected]", | ||
), | ||
], | ||
development_status='5 - Production/Stable', | ||
development_status="5 - Production/Stable", | ||
license=LICENSE_MIT, | ||
license_year=2012, | ||
readme_content=ReadmeContent( | ||
tagline='Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets.', | ||
tagline="Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets.", | ||
content="""## Features | ||
* Useful classes and mixins for Django admin | ||
|
@@ -51,38 +51,38 @@ | |
""", | ||
), | ||
dependencies=[ | ||
'Django>=3.2.20', | ||
'bleach>=1.4,<6', | ||
'python-dateutil>=2.5.3', | ||
"Django>=3.2.20", | ||
"bleach>=1.4,<6", | ||
"python-dateutil>=2.5.3", | ||
], | ||
supported_django_versions=SUPPORTED_DJANGO_VERSIONS, | ||
supported_python_versions=SUPPORTED_PYTHON_VERSIONS, | ||
has_migrations=True, | ||
optional_dependencies={ | ||
'dev': [ | ||
"dev": [ | ||
*DEV_DEPENDENCIES, | ||
'gevent~=22.10', | ||
"gevent~=22.10", | ||
], | ||
'drf': [ | ||
'djangorestframework>=3.8.2', | ||
"drf": [ | ||
"djangorestframework>=3.8.2", | ||
], | ||
'graphql': [ | ||
'graphene-django>=2.2.0', | ||
'django-graphql-jwt>=0.2.1', | ||
"graphql": [ | ||
"graphene-django>=2.2.0", | ||
"django-graphql-jwt>=0.2.1", | ||
], | ||
'sentry': [ | ||
'sentry-sdk>=1.19.1', | ||
"sentry": [ | ||
"sentry-sdk>=1.19.1", | ||
], | ||
'view-layer': [ | ||
'django-crispy-forms>=1.4.0', | ||
"view-layer": [ | ||
"django-crispy-forms>=1.4.0", | ||
], | ||
}, | ||
ruff_ignore_list=[ | ||
RuffIgnoredInspection(key='N999', comment="Project name contains underscore, not fixable"), | ||
RuffIgnoredInspection(key='A003', comment="Django attributes shadow python builtins"), | ||
RuffIgnoredInspection(key='DJ001', comment="Django model text-based fields shouldn't be nullable"), | ||
RuffIgnoredInspection(key='B905', comment="Can be enabled when Python <=3.9 support is dropped"), | ||
RuffIgnoredInspection(key='DTZ001', comment="TODO will affect \"tz_today()\" method"), | ||
RuffIgnoredInspection(key='DTZ005', comment="TODO will affect \"tz_today()\" method"), | ||
RuffIgnoredInspection(key="N999", comment="Project name contains underscore, not fixable"), | ||
RuffIgnoredInspection(key="A003", comment="Django attributes shadow python builtins"), | ||
RuffIgnoredInspection(key="DJ001", comment="Django model text-based fields shouldn't be nullable"), | ||
RuffIgnoredInspection(key="B905", comment="Can be enabled when Python <=3.9 support is dropped"), | ||
RuffIgnoredInspection(key="DTZ001", comment='TODO will affect "tz_today()" method'), | ||
RuffIgnoredInspection(key="DTZ005", comment='TODO will affect "tz_today()" method'), | ||
], | ||
) |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[run] | ||
omit = | ||
setup.py, | ||
*_test.py, | ||
tests.py, | ||
tests/*, | ||
testapp/*, | ||
*tests*, | ||
conftest.py | ||
|
||
[report] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets.""" | ||
|
||
__version__ = '9.1.6' | ||
__version__ = "9.1.6" |
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
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
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.