-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (45 loc) · 1.52 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "aind-behavior-curriculum-template"
description = "A template library for generating a curriculum to interface with aind-behavior-experiment-launcher"
authors = [ {name = "Bruno Cruz", email = "[email protected]"}]
license = {text = "MIT"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
]
readme = "README.md"
dynamic = ["version"]
dependencies = [
]
[project.urls]
Repository = "https://github.com/AllenNeuralDynamics/Aind.Behavior.CurriculumTemplate/"
Issues = "https://github.com/AllenNeuralDynamics/Aind.Behavior.CurriculumTemplate/issues"
Changelog = "https://github.com/AllenNeuralDynamics/Aind.Behavior.CurriculumTemplate/releases"
[project.optional-dependencies]
dev = [
"ruff",
"codespell"
]
[project.scripts]
curriculum = "aind_behavior_curriculum_template:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "aind_behavior_curriculum_template.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
[tool.ruff]
line-length = 120
target-version = 'py311'
[tool.ruff.lint]
extend-select = ['Q', 'RUF100', 'C90', 'I']
extend-ignore = []
mccabe = { max-complexity = 14 }
pydocstyle = { convention = 'google' }
[tool.codespell]
skip = '.git,*.pdf,*.svg,./docs/_build,uv.lock'
ignore-words-list = 'nd'