Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[repo-helper] Configuration Update #79

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ If possible, please include a small, self-contained reproduction.

* Operating System:
* Python:
* repo_helper_bot:
* repo-helper-bot:

## Installation source
<!-- e.g. GitHub repository, GitHub Releases, PyPI/pip, Anaconda/conda -->
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ assignees: domdfcoding

* Operating System:
* Python:
* repo_helper_bot:
* repo-helper-bot:


## Other Additional Information:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributing

.. This file based on https://github.com/PyGithub/PyGithub/blob/master/CONTRIBUTING.md

``repo_helper_bot`` uses `tox <https://tox.readthedocs.io>`_ to automate testing and packaging,
``repo-helper-bot`` uses `tox <https://tox.readthedocs.io>`_ to automate testing and packaging,
and `pre-commit <https://pre-commit.com>`_ to maintain code quality.

Install ``pre-commit`` with ``pip`` and install the git hook:
Expand Down
1 change: 1 addition & 0 deletions formate.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,6 @@ known_third_party = [
"requests",
"southwark",
"sqlalchemy",
"werkzeug",
]
known_first_party = "repo_helper_bot"
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [ "setuptools!=61.*,>=40.6.0", "wheel>=0.34.2",]
build-backend = "setuptools.build_meta"

[project]
name = "repo_helper_bot"
name = "repo-helper-bot"
version = "0.0.0"
description = "I keep your repository configuration up-to-date using 'repo_helper'."
readme = "README.rst"
Expand Down Expand Up @@ -43,6 +43,7 @@ python-versions = [ "3.6", "3.7", "3.8", "3.9",]
python-implementations = [ "CPython",]
platforms = [ "Windows", "macOS", "Linux",]
license-key = "MIT"
package = "repo_helper_bot"

[tool.mypy]
python_version = "3.8"
Expand All @@ -64,12 +65,12 @@ platforms = [ "Windows", "macOS", "Linux",]
[tool.dep_checker]
allowed_unused = [ "werkzeug", "gunicorn", "psycopg2", "psycopg2_binary",]

[tool.dependency-dash."requirements.txt"]
order = 10

[tool.dep_checker.name_mapping]
github3_py = "github3"

[tool.dependency-dash."requirements.txt"]
order = 10

[tool.snippet-fmt.languages.python]
reformat = true

Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# * options.entry_points

[metadata]
name = repo_helper_bot
name = repo-helper-bot
version = 0.0.0
author = Dominic Davis-Foster
author_email = dominic@davis-foster.co.uk
Expand All @@ -16,10 +16,10 @@ keywords =
long_description = file: README.rst
long_description_content_type = text/x-rst
platforms = Windows, macOS, Linux
url = https://github.com/repo-helper/repo_helper_bot
url = https://github.com/repo-helper/repo-helper-bot
project_urls =
Issue Tracker = https://github.com/repo-helper/repo_helper_bot/issues
Source Code = https://github.com/repo-helper/repo_helper_bot
Issue Tracker = https://github.com/repo-helper/repo-helper-bot/issues
Source Code = https://github.com/repo-helper/repo-helper-bot
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
# * envlists
# * testenv
# * testenv:.package
# * testenv:py313-dev
# * testenv:py312-dev
# * testenv:py312
# * testenv:docs
# * testenv:build
# * testenv:lint
Expand Down
Loading