-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
43 lines (33 loc) · 1.05 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
41
42
43
[tool.poetry]
name = "nala"
version = "0.4.0"
description = "NER of natural language mutation mentions"
homepage = "https://github.com/Rostlab/nala"
# license = UNKNOWN
authors = [
"Juan Miguel Cejuela <[email protected]>",
"Aleksandar Bojchevski <[email protected]>",
"Carsten Uhlig"
]
readme = "README.md"
keywords=["mutations", "mutation mentions", "NLP", "NLU", "NER", "RE", "natural language", "CRF", "SVM", "entity extraction", "relation extraction"]
classifiers = [
"Natural Language :: English",
"Topic :: Text Processing :: Linguistic"
]
exclude = [
"nala/data/word_embeddings_2016-03-28*",
"nala/data/default_model"
]
[tool.poetry.dependencies]
python = "3.6.*"
# Switch this when you are actively developing nalaf
# nalaf = {path = "../nalaf"}
# nalaf = {develop = true, git = "https://github.com/Rostlab/nalaf.git", branch = "feature/improve-performance"}
nalaf = "0.6.0"
[tool.poetry.dev-dependencies]
pyflakes = "^2.2.0"
nose = "^1.3.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"