-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.21 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["alphacube"]
[project]
name = "alphacube"
version = "0.1.4"
description = "A powerful & flexible Rubik's Cube solver"
readme = "README.md"
requires-python = ">=3.6"
authors = [{ name = "Kyo Takano" }]
license = { file = "LICENSE" }
keywords = ["rubiks-cube", "solver", "ai"]
dependencies = [
"torch>=2.0.1",
"numpy>=1.23.3",
"rich>=13.0.1",
"pydantic>=2.0.3",
"requests>=2.28.2",
"tqdm",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3 :: Only',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
"Documentation" = "https://alphacube.dev/docs/index.html"
"Source" = "https://github.com/kyo-takano/alphacube"
[project.scripts]
alphacube = "alphacube:cli"
[tool.ruff]
line-length = 100