-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (47 loc) · 1.03 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"pybind11>=2.10.3",
"pytest"
]
build-backend = "setuptools.build_meta"
[project]
name = "humanleague"
version = "2.3.2"
authors = [
{ name="Andrew Smith", email="[email protected]" },
]
license = {file = "LICENSE.md"}
description = "Microsynthesis using quasirandom sampling and/or IPF"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.19.1"
]
[project.optional-dependencies]
dev = [
"pybind11>=2.10.3",
"pytest>=7.1.3",
"mypy>=1.5.0",
"mypy-extensions>=1.0.0",
"ruff>=0.0.286",
"build>=0.10.0"
]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests"
]
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401", "F403"]