-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.01 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 = "patcit"
version = "0.3.0"
description = "Unpack the innovation system"
authors = ["Cyril Verluise <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
patcit = "patcit.main:app"
[tool.poetry.dependencies]
python = "^3.7"
numpy = "^1.18.1"
pandas = "^1.0.2"
beautifulsoup4 = "^4.8.2"
lxml = "^4.5.2"
asyncio = "^3.4.3"
jsonschema = "^3.2.0"
smart_open = "^1.9.0"
tqdm = "^4.50.2"
wasabi = "^0.8.0"
tabulate = "^0.8.7"
pycld2 = "^0.41"
glom = "^20.8.0"
fuzzysearch = "^0.7.3"
dateparser = "^0.7.6"
plotly = "^4.11.0"
sklearn = "^0.0"
en_core_web_sm = {url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.3.1/en_core_web_sm-2.3.1.tar.gz"}
spacy = "^2.3.2"
spacy-lookups-data = "^0.3.2"
typer = {extras = ["all"], version = "^0.3.2"}
[tool.poetry.dev-dependencies]
pre-commit = "^2.0.1"
mkdocs-material = "^6.1.3"
pymdown-extensions = "^8.0.1"
Pygments = "^2.7.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"