Skip to content

Commit

Permalink
FEATURE : Renamed page-config-model to hitchpage.
Browse files Browse the repository at this point in the history
  • Loading branch information
crdoconnor committed Sep 2, 2023
1 parent b386124 commit d35aba2
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.pytest_cache
build/
dist/
page_config_model.egg-info/
hitchpage.egg-info/
docs/snippets/
docs/draft/
docs/src/using/
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include VERSION LICENSE.txt README.md CHANGELOG.md
recursive-include page_config_model/
recursive-include hitchpage/
global-exclude __pycache__
global-exclude *.py[co]
global-exclude .git*
2 changes: 1 addition & 1 deletion PROJECT_NAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
page_config_model
hitchpage
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# Page Config Model
# HitchPage

The page config model is an alternative to the page object model.
10 changes: 5 additions & 5 deletions hitch/key.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@


toolkit = hitchpylibrarytoolkit.ProjectToolkitV2(
"PageConfigModel",
"page-config-model",
"hitchdev/page-config-model",
"HitchPage",
"hitchpage",
"hitchdev/hitchpage",
image="",
package_name="page_config_model",
package_name="hitchpage",
)


Expand Down Expand Up @@ -166,7 +166,7 @@ def envirotest(strategy_name):

test_package = pyenv.PythonRequirements(
[
"page-config-model=={}".format(_current_version()),
"hitchpage=={}".format(_current_version()),
],
test_repo=True,
)
Expand Down
2 changes: 1 addition & 1 deletion hitch/story/quickstart.story
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Quickstart:
<p id="id_dashboard_message">hello!</a>
setup: |
from playwright.sync_api import expect, sync_playwright
from page_config_model import PlaywrightPageConfig
from hitchpage import PlaywrightPageConfig
from pathlib import Path

browser = sync_playwright().start().chromium.connect("ws://127.0.0.1:3605")
Expand Down
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["page_config_model"]
packages = ["hitchpage"]

[project]
name = "page-config-model"
name = "hitchpage"
authors = [
{name = "Colm O'Connor", email = "[email protected]"},
]
Expand All @@ -30,10 +30,10 @@ dependencies = [
dynamic = ["version", "readme"]

[project.urls]
homepage = "https://hitchdev.com/page-config-model"
documentation = "https://hitchdev.com/page-config-model/using"
repository = "https://github.com/hitchdev/page-config-model"
changelog = "https://hitchdev.com/page-config-model/changelog"
homepage = "https://hitchdev.com/hitchpage"
documentation = "https://hitchdev.com/hitchpage/using"
repository = "https://github.com/hitchdev/hitchpage"
changelog = "https://hitchdev.com/hitchpage/changelog"

[tool.setuptools.dynamic]
readme = {file = ["README.md",], content-type = "text/markdown"}
Expand Down

0 comments on commit d35aba2

Please sign in to comment.