-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) · 2.6 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (77 loc) · 2.6 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
authors = [
{ name = "Michael C. Burkhart <burkh4rt@uchicago.edu>, Luke Solo <lsolo@uchicago.edu>, Inhyeok Lee <ihlee@uchicago.edu>, S'Khaja Charles <skhaja@uchicago.edu>, & Brett K. Beaulieu-Jones <beaulieujones@uchicago.edu>" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
dependencies = [
"deepdiff",
"numpy",
"omegaconf",
"polars",
"rich",
"typer",
]
description = "configurable collator and tokenizer"
keywords = [ "data collation", "generative event models", "tokenization" ]
license = "MIT"
license-files = [ "LICEN[CS]E.*" ]
name = "cocoa-tokenizer"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
version = "26.6.3"
[project.scripts]
cocoa = "cocoa.cli:main"
[project.urls]
Documentation = "https://cocoa-tokenizer.readthedocs.io"
Issues = "https://github.com/bbj-lab/cocoa/issues"
Repository = "https://github.com/bbj-lab/cocoa"
[project.optional-dependencies]
all = [ "cocoa-tokenizer[dev,docs,test]" ]
dev = [ "pip", "ruff" ]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-include-markdown-plugin",
"mkdocs-callouts",
"mkdocs-git-revision-date-localized-plugin",
]
test = [ "pytest" ]
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools" ]
[tool.ruff]
extend-exclude = [ "*.md" ]
line-length = 88
[tool.ruff.format]
docstring-code-format = true
indent-style = "space"
line-ending = "lf"
quote-style = "double"
skip-magic-trailing-comma = true
[tool.ruff.lint]
ignore = [ "E731" ]
select = [ "E", "F", "I" ]
[tool.ruff.lint.isort]
known-first-party = [ "cocoa", "cotorra", "coreopsis" ]
split-on-trailing-comma = false
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = [ "src" ]
[tool.setuptools.package-data]
"cocoa.config" = [ "*.yaml" ]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--strict-config",
"--strict-markers",
]
log_level = "INFO"
pythonpath = [ "src", "tests" ]
testpaths = [ "tests" ]