Skip to content

Commit cb935ec

Browse files
Add author and version in __init__.py
1 parent 97106de commit cb935ec

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = python-tictactoe
3-
version = 0.0.5
3+
version = attr: tictactoe.VERSION
44
author = AttackingOrDefending
55
description = A tic-tac-toe library that supports different sizes and dimensions and how many marks in a row to win
66
long_description = file: README.md

tictactoe/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
import numpy.typing as npt
55
from typing import List, Tuple, Iterable, Optional, Union
66

7+
__author__ = "AttackingOrDefending"
8+
__version__ = "0.0.5"
9+
10+
711
_all_numpy_int_types = Union[np.int8, np.int16, np.int32, np.int64]
812

913
X = 1

0 commit comments

Comments
 (0)