-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1.01 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=80.1", "setuptools_scm[toml]>=8.3.1"]
build-backend = "setuptools.build_meta"
[project]
name = "magiccube"
dynamic = ["version"]
authors = [
{ name="Gonçalo Trincão Cunha", email="goncalo.cunha@gmail.com" },
]
description = "NxNxN Rubik Cube implementation"
keywords = ["rubik", "cube", "solver", "Rubik Cube", "NxNxN"]
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
]
[project.urls]
"Homepage" = "https://github.com/trincaog/magiccube"
[tool.setuptools.packages.find]
include = ["magiccube", "magiccube.*"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[dependency-groups]
dev = [
"autopep8>=2.3.2",
"mypy>=1.15.0",
"numpy>=2.0.2",
"pdoc>=15.0.3",
"pre-commit>=4.2.0",
"pylint>=3.3.6",
"pytest>=8.3.5",
]