-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
72 lines (71 loc) · 1.25 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "createthesun"
version = "0.3.0-a"
description = "An incremental game where the goal is to create the sun!"
readme = "README.md"
dependencies = [
"altgraph",
"certifi",
"charset-normalizer",
"dacite",
"deepdiff",
"fonttools",
"idna",
"mpmath",
"numpy",
"ordered-set",
"packaging",
"pefile",
"pyinstaller",
"pyinstaller-hooks-contrib",
"PySide6",
"PySide6-Addons",
"PySide6-Essentials",
"regex",
"repoze.lru",
"requests",
"setuptools",
"shiboken6",
"snakeviz",
"swinlnk",
"sympy",
"tornado",
"types-regex",
"types-requests",
"urllib3",
"versions-kaneryu",
]
[project.optional-dependencies]
dev = [
"ruff",
]
tests = [
"pytest",
"pytest-cov",
"coverage"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"src/createthesun",
"src/dacite",
]
[tool.ruff]
target-version = "py312"
line-length = 120
include = [
"pyproject.toml",
"src/**/*.py",
]
[tool.ruff.lint]
select = [
"I", # isort
]
[tool.coverage.run]
source = [
"src/createthesun",
]
[tool.pytest.ini_options]
addopts = "--cov --cov-report=lcov:lcov.info --cov-report=term"