-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 917 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
32
33
34
35
36
37
38
39
[project]
name = "semantic_extraction"
version = "0.1.0"
description = "A project for trend analysis based on NLP semantic extraction"
authors = [
{name = "Jonathan Frees", email = "[email protected]"},
{name = "Jan Foksinski", email = "[email protected]"}
]
dependencies = [
"sentence-transformers~=2.1",
"hnswlib~=0.5",
"gensim~=4.1",
"nltk~=3.6",
"tqdm~=4.62",
]
requires-python = ">=3.8"
dynamic = ["classifiers"]
license = {text = "Copyright UAB CFRL 2021"}
[project.urls]
homepage = ""
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = ["black~=21.6", "isort~=5.9", "pytest~=6.2"]
[tool.isort]
length_sort = "1"
profile = "black"
sections="STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
import_heading_stdlib="STL"
import_heading_thirdparty="PDM"
import_heading_firstparty="LOCAL"
import_heading_localfolder="LOCAL"