-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 886 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "licorice"
version = "0.0.7"
description = "Linux Comodular Realtime Interactive Compute Environment"
readme = "README.rst"
license = {file = "LICENSE"}
authors = [
{email = "licorice@bil.stanford.edu"},
{name = "Stanford Brain Interfacing Laboratory"}
]
classifiers = [
"Programming Language :: Python :: 3"
]
requires-python = ">=3.8"
dynamic = ["dependencies"]
[project.scripts]
licorice = "licorice.cli:main"
[tool.setuptools]
packages = ["licorice"]
include-package-data = true
[tool.setuptools.dynamic]
dependencies = {file = ["install/requirements.in"]}
[tool.isort]
profile = "black"
multi_line_output = 3
py_version = 38
skip_glob = "*.lico/*"
[tool.black]
line-length = 79
target-version = ["py38", "py39", "py310", "py311"]
force-exclude = "/(examples/*|tests/*)/"