-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.1 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
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crapssim-evo"
version = "0.0.1"
description = "Standalone evolutionary engine for CrapsSim strategies (siloed; bundle-in/bundle-out)."
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "Rey", email = "devnull@example.com" }]
license = { text = "MIT" }
# Core runtime dependencies required for the library to function.
# Keep this list minimal to avoid heavy default installs.
dependencies = [
"numpy>=1.26",
"pyyaml>=6.0",
]
[project.optional-dependencies]
# Install with: pip install -e .[runtime]
runtime = [
"leap-ec>=1.0.0",
"numpy>=1.26",
"pandas>=2.1",
"pyyaml>=6.0"
]
# Install with: pip install -e .[dev]
dev = [
"pytest>=7.0",
"ruff>=0.5.0",
"black>=24.0.0",
"build>=1.2.1"
]
[project.scripts]
crapssim-evo = "cli.evolve:main"
[tool.setuptools]
# Explicit list for reliability
packages = ["evo", "evo.io", "cli"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
target-version = "py311"
select = ["E", "F", "I"]
ignore = []