generated from github/codespaces-jupyter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (29 loc) · 900 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src/"]
include = ["sudoku"]
[project]
name = "sudoku"
version = "0.1.0.dev0"
license = {file = "LICENSE"}
description = "Various Sudoku solvers"
authors = [{name = "Ilja Heitlager"}]
maintainers = [
{name = "Ilja Heitlager", email="[email protected]"},
]
requires-python = ">=3.11"
readme = "README.md"
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Education',
'Operating System :: OS Independent',
]