-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
92 lines (82 loc) · 2.05 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[project]
name = "rich_life"
dynamic = ["version"]
description = "Terminal-based life and ant simulation."
url = "https://github.com/paulrobello/rich_life"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Paul Robello", email = "[email protected]" }]
maintainers = [{ name = "Paul Robello", email = "[email protected]" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment :: Simulation",
"Typing :: Typed"
]
keywords = ["simulation", "terminal"]
dependencies = [
"rich>=13.8.0",
"typer>=0.12.5",
]
packages = [
"src/rich_life"
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
]
[project.urls]
Homepage = "https://github.com/paulrobello/rich_life"
Documentation = "https://github.com/paulrobello/rich_life/blob/main/README.md"
Repository = "https://github.com/paulrobello/rich_life"
Issues = "https://github.com/paulrobello/rich_life/issues"
Discussions = "https://github.com/paulrobello/rich_life/discussions"
Wiki = "https://github.com/paulrobello/rich_life/wiki"
[project.scripts]
rich_life = "rich_life.__main__:app"
[build-system]
requires = ["hatchling", "wheel"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"build>=1.2.1",
"twine>=5.1.1",
"black>=24.8.0",
"pylint>=3.2.7",
"pyright>=1.1.379",
"pre-commit>=3.8.0",
"pytest>=8.3.2",
]
[tool.hatch.version]
path = "src/rich_life/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/rich_life"]
include = [
"*.py",
"py.typed",
"*.png",
"*.md",
"*.tcss",
"*.png",
"*.md",
"*.tcss"
]
[tool.hatch.build.targets.sdist]
include = [
"src/rich_life",
"LICENSE",
"README.md",
"pyproject.toml"
]
exclude = [
"*.pyc",
"__pycache__",
"*.so",
"*.dylib"
]