-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.38 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spacy-ewc"
dynamic = ["version"] # The version is dynamically fetched by setuptools-scm
description = "A spaCy library for Named Entity Recognition with Elastic Weight Consolidation."
license = { text = "MIT" }
authors = [{ name = "DarkRockMountain", email = "dev@darkrockmountain.com" }]
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["spacy>=3.0.0", "numpy>=2.0.2"]
# Optional dependencies
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"spacy-lookups-data",
"flake8",
"black",
# "en_core_web_sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0.tar.gz",
]
docs = ["sphinx"]
# URLs related to the project
[project.urls]
homepage = "https://github.com/darkrockmountain/spacy-ewc"
repository = "https://github.com/darkrockmountain/spacy-ewc"
documentation = "https://github.com/darkrockmountain/spacy-ewc#readme"
# Specify the package directory explicitly to avoid the "multiple top-level packages" error
[tool.setuptools.packages.find]
include = ["spacy_ewc*"]
# Specify specifies options for setuptools-scm
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"