-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 750 Bytes
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
[tool.poetry]
name = "beagletm2"
version = "v1.0.0"
description = "An analyical system to parse articles and browse created data for the determination of common ideas."
authors = ["Oliver Bonham-Carter <obonhamcarter@allegheny.edu>"]
readme = "README.md"
[tool.poetry.scripts]
beagletm2 = "beagletm2.main:cli"
[tool.poetry.dependencies]
#python = ">=3.10,<3.13"
#python = "^3.10"
#python = ">=3.8,<3.9.7 || >3.9.7,<4.0"
python = ">=3.9,<3.9.7 || >3.9.7,<3.13"
typer = "^0.7.0"
rich = "^13.3.3"
streamlit = "^1.21.0"
black = "^23.3.0"
matplotlib = "^3.7.1"
pyvis = "^0.3.2"
#spacy = "^3.5.1"
spacy = "3.7.6"
plotly = "^5.14.1"
#bokeh = "^3.2.1"
scipy = "^1.11.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"