Skip to content

Commit

Permalink
Create pyproject.toml
Browse files Browse the repository at this point in the history
Create toml file using poetry
  • Loading branch information
Steven-Palayew committed Apr 6, 2022
1 parent 85f9b9e commit 6610833
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[tool.poetry]
name = "pathway-abstract-classifier"
version = "0.1.0"
description = "Classify articles in terms of being suitable for Biofactoid"
authors = ["Steven Palayew"]

[tool.poetry.dependencies]
python = "^3.9"
pandas = "^1.4.2"
scikit-learn = "^1.0.2"
ktrain = "^0.30.0"

[tool.poetry.dev-dependencies]
ktrain = "^0.30.0"
pandas = "^1.4.2"
scikit-learn = "^1.0.2"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 6610833

Please sign in to comment.