-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 759 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 759 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
[project]
name = "decaffinate"
version = "0.2"
authors = [
{ name="Max Müller-Eberstein", email="decaf@personads.me" },
]
description = "A Dynamically Extensible Corpus Analysis Framework"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
license = "MIT"
[tool.setuptools.packages.find]
exclude = ["experiments*", "venv*"]
[project.optional-dependencies]
full = [
"conllu>=6.0.0",
"matplotlib>=3.9.0",
"notebook>=7.3.0",
"numpy>=2.0.0",
"pandas>=2.2.0",
"scipy>=1.13.0",
"sqlparse>=0.5.0",
]
[project.urls]
Homepage = "https://mxij.me/x/decaf"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"