Skip to content

Commit 298e9a3

Browse files
python-tictactoe 0.0.2
- Minor changes
1 parent abd739d commit 298e9a3

3 files changed

Lines changed: 33 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# python-tictactoe
22
[![PyPI version](https://badge.fury.io/py/python-tictactoe.svg)](https://badge.fury.io/py/python-tictactoe) [![Tests](https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/tests.yml/badge.svg)](https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/tests.yml) [![Build](https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/build.yml/badge.svg)](https://github.com/AttackingOrDefending/python-tictactoe/actions/workflows/build.yml)
33

4-
python-tictactoe is a tic-tac-toe library that supports different sizes and dimensions and how many marks in a row to win.
4+
A tic-tac-toe library that supports different sizes and dimensions and how many marks in a row to win.
55

66
## Features
77

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[metadata]
2+
name = python-tictactoe
3+
version = 0.0.2
4+
author = AttackingOrDefending
5+
description = A tic-tac-toe library that supports different sizes and dimensions and how many marks in a row to win
6+
long_description = file: README.md
7+
long_description_content_type = text/markdown
8+
keywords = tic-tac-toe, tictactoe, game
9+
url = https://github.com/AttackingOrDefending/python-tictactoe
10+
project_urls =
11+
Bug Tracker = https://github.com/AttackingOrDefending/python-tictactoe/issues
12+
classifiers =
13+
Intended Audience :: Developers
14+
Intended Audience :: Science/Research
15+
Programming Language :: Python :: 3
16+
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
17+
Operating System :: OS Independent
18+
Topic :: Games/Entertainment :: Turn Based Strategy
19+
Topic :: Software Development :: Libraries :: Python Modules
20+
21+
[options]
22+
packages =
23+
tictactoe
24+
python_requires = >=3.6
25+
install_requires =
26+
numpy==1.22.1

0 commit comments

Comments
 (0)