-
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.
fix: rename project to py-golf-games (#26)
* fix: rename project to py-golf-games * updated poetry.lock for cache
- Loading branch information
Showing
22 changed files
with
62 additions
and
33 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ ENV PYTHONFAULTHANDLER=1 \ | |
PIP_DEFAULT_TIMEOUT=100 \ | ||
POETRY_VERSION=1.1.12 | ||
|
||
ARG REPOSITORY=https://github.com/ryankanno/py-golf | ||
ARG REPOSITORY=https://github.com/ryankanno/py-golf-games | ||
ARG BUILD_DATETIME | ||
ARG VERSION | ||
ARG REVISION | ||
|
@@ -24,7 +24,7 @@ ENV BRANCH ${BRANCH:-main} | |
LABEL maintainers="Ryan Kanno <[email protected]>" | ||
|
||
LABEL org.opencontainers.image.created="${BUILD_DATETIME}" \ | ||
org.opencontainers.image.title="py-golf" \ | ||
org.opencontainers.image.title="py-golf-games" \ | ||
org.opencontainers.image.description="Library to help simulate golf games" \ | ||
org.opencontainers.image.authors="[email protected]" \ | ||
org.opencontainers.image.revision="${REVISION}" \ | ||
|
@@ -48,7 +48,7 @@ COPY poetry.lock /poetry.lock | |
|
||
RUN /bin/bash -c "poetry config virtualenvs.create false && poetry install --no-dev --no-interaction --no-ansi --no-root" | ||
|
||
COPY ./py_golf /project/py_golf | ||
COPY ./py_golf_games /project/py_golf_games | ||
|
||
ENV PYTHONPATH "${PYTHONPATH}:/project" | ||
|
||
|
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,7 +1,7 @@ | ||
include LICENSE | ||
include MANIFEST.in | ||
include README.rst | ||
recursive-include py_golf *.py | ||
recursive-include py_golf_games *.py | ||
recursive-include tests *.py | ||
recursive-include docs * | ||
prune *.pyc |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
__title__ = 'py_golf' | ||
__title__ = 'py_golf_games' | ||
__author__ = 'Ryan Kanno' | ||
__email__ = '[email protected]' | ||
__license__ = 'MIT' | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[tool.poetry] | ||
name = "py-golf" | ||
name = "py-golf-games" | ||
version = "0.0.0" | ||
description = "Simulation of golf games" | ||
authors = ["Ryan <[email protected]>"] | ||
packages = [ | ||
{ include = "py_golf" }, | ||
{ include = "py_golf_games" }, | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -65,7 +65,7 @@ multi_line_output = 3 | |
use_parentheses = true | ||
known_third_party = [] | ||
default_section = "THIRDPARTY" | ||
known_first_party = "py_golf" | ||
known_first_party = "py_golf_games" | ||
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER" | ||
|
||
[build-system] | ||
|
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 @@ | ||
#!/usr/bin/env sh | ||
|
||
export PYTHONPATH=py_golf && python -m py_golf.simulation.simulator | ||
export PYTHONPATH=py_golf_games && python -m py_golf_games.simulation.simulator |
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