-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
5 changed files
with
31 additions
and
11 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
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 |
---|---|---|
|
@@ -45,34 +45,35 @@ from ambient_package_update.metadata.author import PackageAuthor | |
from ambient_package_update.metadata.constants import DEV_DEPENDENCIES | ||
from ambient_package_update.metadata.package import PackageMetadata | ||
from ambient_package_update.metadata.readme import ReadmeContent | ||
from ambient_package_update.metadata.ruff_ignored_inspection import RuffIgnoredInspection | ||
from ambient_package_update.metadata.ruff_ignored_inspection import ( | ||
RuffIgnoredInspection, | ||
) | ||
|
||
METADATA = PackageMetadata( | ||
package_name='my_package_name', | ||
package_name="my_package_name", | ||
authors=[ | ||
PackageAuthor( | ||
name='Ambient Digital', | ||
email='[email protected]', | ||
name="Ambient Digital", | ||
email="[email protected]", | ||
), | ||
], | ||
development_status='5 - Production/Stable', | ||
development_status="5 - Production/Stable", | ||
readme_content=ReadmeContent( | ||
tagline='A fancy tagline for your new package', | ||
tagline="A fancy tagline for your new package", | ||
content="""A multiline string containing specific things you want to have in your package readme. | ||
""", | ||
), | ||
dependencies=[ | ||
'my_dependency>=1.0', | ||
"my_dependency>=1.0", | ||
], | ||
optional_dependencies={ | ||
'dev': [ | ||
"dev": [ | ||
*DEV_DEPENDENCIES, | ||
], | ||
# you might add further extras here | ||
}, | ||
ruff_ignore_list=[ | ||
RuffIgnoredInspection(key='XYZ', comment="Reason why we need this exception"), | ||
|
||
RuffIgnoredInspection(key="XYZ", comment="Reason why we need this exception"), | ||
], | ||
) | ||
``` | ||
|
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 @@ | ||
"""Ambient package update tool for clean and swift maintenance""" | ||
|
||
__version__ = "24.6.3" | ||
__version__ = "24.6.4" |
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