File: pyproject.toml

package info (click to toggle)
python-sudoku 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 132 kB
  • sloc: python: 567; makefile: 2; sh: 2
file content (22 lines) | stat: -rw-r--r-- 657 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[project]
name = "py-sudoku"
version = "2.0.0"
requires-python = ">=2.7"
authors = [
  {name = "Jeff Sieu", email = "jeffsieu@gmail.com"},
]
description = "A simple Python package that generates and solves m x n Sudoku puzzles."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["SUDOKU"]
classifiers = [
  "Programming Language :: Python :: 2",
  "Programming Language :: Python :: 3",
  "License :: OSI Approved :: MIT License",
  "Operating System :: OS Independent",
]

[project.urls]
Homepage = "https://github.com/jeffsieu/py-sudoku"
Issues = "https://github.com/jeffsieu/py-sudoku/issues"
GitHub = "https://github.com/jeffsieu/py-sudoku"