-
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.
- Loading branch information
Showing
11 changed files
with
17 additions
and
19 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 |
---|---|---|
@@ -1 +1 @@ | ||
precommit_recommendations/.pre-commit-config.yaml | ||
precommend/.pre-commit-config.yaml |
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
File renamed without changes.
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 @@ | ||
# The version file is generated automatically by setuptools_scm | ||
from precommend._version import version as __version__ |
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -12,8 +12,8 @@ build-backend = "setuptools.build_meta" | |
# a variety of build tools. Notably, the version specified here is the | ||
# single source of truth for precommit_recommendations's version | ||
[project] | ||
name = "precommit_recommendations" | ||
description = "Add short description here" | ||
name = "precommend" | ||
description = "Opinionated initialization of pre-commit configurations" | ||
readme = "README.md" | ||
maintainers = [ | ||
{ name = "Dominic Kempf", email = "[email protected]" }, | ||
|
@@ -40,14 +40,14 @@ tests = [ | |
|
||
# Command line scripts installed as part of the installation | ||
[project.scripts] | ||
precommit_recommendations = "precommit_recommendations.__main__:main" | ||
precommend = "precommend.__main__:main" | ||
|
||
# The following section contains setuptools-specific configuration | ||
# options. For a full reference of available options, check the overview | ||
# at https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html | ||
[tool.setuptools] | ||
packages = [ | ||
"precommit_recommendations", | ||
"precommend", | ||
] | ||
|
||
# Configure setuptools_scm, which extracts the version number from | ||
|
@@ -56,7 +56,7 @@ packages = [ | |
[tool.setuptools_scm] | ||
version_scheme = "post-release" | ||
local_scheme = "node-and-date" | ||
write_to = "precommit_recommendations/_version.py" | ||
write_to = "precommend/_version.py" | ||
|
||
# The following is the configuration for the pytest test suite | ||
[tool.pytest.ini_options] | ||
|
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