-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (61 loc) · 1.94 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 = "simpy-playground"
dynamic = ["version"]
description = "A SimPy playground to experiment with multiple simulation scenarios."
authors = [{ name = "R Max Espinoza", email = "hey@rmax.dev" }]
dependencies = ["simpy"]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">= 3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering",
]
[project.scripts]
simpy-play = 'simpy_playground.__main__:main'
[project.urls]
Homepage = "https://github.com/rmax/simpy-playground/"
Source = "https://github.com/rmax/simpy-playground/"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
raw-options = { version_scheme = "no-guess-dev" }
[tool.hatch.build.hooks.vcs]
version-file = "src/simpy_playground/_version.py"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.2.2",
"pytest-cov>=5.0.0",
"pre-commit>=3.7.1",
"pyright>=1.1.371",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.sdist]
include = ["src/simpy_playground"]
[tool.hatch.build.targets.wheel]
packages = ["src/simpy_playground"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -vvv --cov=simpy_playground"
testpaths = ["tests"]