Skip to content

Commit

Permalink
🔀 Merge pull request #1 from davep/general-refresh
Browse files Browse the repository at this point in the history
General refresh
  • Loading branch information
davep authored Mar 10, 2024
2 parents 94e3f81 + d1fd797 commit 316ac26
Show file tree
Hide file tree
Showing 6 changed files with 163 additions and 151 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ spackage: # Create a source package for the library
$(build) -s

.PHONY: packagecheck
packagecheck: package # Check the packaging.
packagecheck: package spackage # Check the packaging.
$(twine) check dist/*

.PHONY: testdist
Expand Down
3 changes: 1 addition & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ twine = "*"
pylint = "*"

[requires]
python_version = "3.11"
python_full_version = "3.11.6"
python_version = "3.12"
289 changes: 144 additions & 145 deletions Pipfile.lock

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,25 @@ Database](https://opentdb.com/) as the back end.

## Installing

### pipx

The package can be installed using [`pipx`](https://pypa.github.io/pipx/):

```sh
$ pipx install quizzical
```

### Homebrew

The package is available via Homebrew. Use the following commands to install:

```sh
$ brew tap davep/homebrew
$ brew install quizzical
```

## Running

Once installed run the `quizzical` command.

## Playing the game
Expand Down
2 changes: 1 addition & 1 deletion quizzical/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__credits__ = ["Dave Pearson"]
__maintainer__ = "Dave Pearson"
__email__ = "[email protected]"
__version__ = "0.1.0"
__version__ = "0.1.1"
__licence__ = "GPLv3+"

##############################################################################
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Games/Entertainment
Topic :: Internet
Topic :: Terminals
Expand All @@ -35,9 +36,9 @@ project_urls =
packages = find:
platforms = any
include_package_data = True
python_requires = >=3.10,<3.12
python_requires = >=3.10,<3.13
install_requires =
textual>=0.47.1
textual>=0.52.1
textual-countdown
humanize>=4.8.0
xdg-base-dirs>=6.0.0
Expand Down

0 comments on commit 316ac26

Please sign in to comment.