-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 1.09 KB
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
[tool.poetry]
name = "CommitCanvas"
version = "0.1.0"
description = ""
authors = ["bagashvilit <bagashvilit@allegheny.edu>"]
[tool.poetry.dependencies]
python = ">=3.7.1,<4.0"
pre-commit = "^2.5.1"
spacy = "^2.3.2"
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" }
pyarrow = "^4.0.0"
typer = "^0.3.2"
nltk = "^3.6.2"
scikit-learn = "^0.24.2"
pandas = "^1.2.4"
# install the deployed model as a commitcanvas dependency
model = {url = "https://github.com/CommittedTeam/commitcanvas-models/releases/download/0.1.1/model-0.1.0.tar.gz"}
reporover = { git = "https://github.com/CommittedTeam/RepoRover", branch = "repo-mining" }
commitcanvas_models = { git = "https://github.com/CommittedTeam/commitcanvas-models", branch = "commitcanvas-model" }
[tool.poetry.dev-dependencies]
pytest = "^5.3.5"
pytest-cov = "^2.10.0"
codecov = "^2.1.8"
[tool.poetry.scripts]
check = "commitcanvas.__main__:app"
commitcanvas = "commitcanvas.commit_label.train_model:app"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"