-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.1 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
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "sm-grams"
version = "2.1.7"
description = ""
authors = ["Binh Vu <binh@toan2.com>"]
license = "MIT"
packages = [
{ include = "grams" }
]
readme = "README.md"
homepage = "https://github.com/usc-isi-i2/grams"
repository = "https://github.com/usc-isi-i2/grams"
[tool.poetry.scripts]
grams = 'grams.cli:cli'
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.0"
beautifulsoup4 = "^4.9.3"
orjson = "^3.8.2"
python-slugify = "^6.1.2"
tqdm = "^4.64.0"
ujson = "^5.5.0"
"ruamel.yaml" = "^0.17.21"
loguru = "^0.6.0"
networkx = "^2.8.2"
html5lib = "^1.1"
omegaconf = "^2.0.6"
rdflib = "^6.1.1"
ipython = "^8.0.1"
matplotlib = "^3.5.3"
rltk = "==2.0.0a20"
pslpython = "==2.2.2"
fastnumbers = "^3.2.1"
numparser2 = "^1.0.0"
ftfy = "^6.1.1"
sem-desc = "^4.1.6"
kgdata = "^3.3.1"
click = ">=8.0.0,<=8.0.4"
steiner-tree = "^1.1.3"
ned = "^1.3.0"
typing_extensions = "^4.0.0"
hugedict = "^2.8.0"
graph-wrapper = "^1.5.0"
timer4 = "^1.0.2"
[tool.poetry.dev-dependencies]
pytest-mock = "^3.6.1"
pytest = "^7.1.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"