-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
31 lines (28 loc) · 994 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "breds"
version = "1.0.1"
authors = [{name = "David S. Batista", email = "[email protected]"}]
description = "Bootstrapping Relationship Extraction with Distributional Semantics"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["nlp", "semantic relationship extraction", "bootstrapping", "emnlp",
"vector representations", "word embeddings", "word2vec", "phrase embeddings"]
license = {text = "GNU GPLv3"}
classifiers = [
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3",
]
dependencies = [
"gensim >= 3.7.3",
"nltk >= 3.4.1",
"numpy >= 1.16.3",
]
[project.urls]
homepage = "https://github.com/davidsbatista/BREDS"
documentation = "https://www.davidsbatista.net/assets/documents/publications/breds-emnlp_15.pdf"
repository = "https://github.com/davidsbatista/BREDS"
[project.scripts]
breds = "breds.cli:main"