-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (35 loc) · 1007 Bytes
/
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
[tool.poetry]
name = "allennlp-shiba"
version = "0.0.0" # using poetry-dynamic-versioning
license = "Apache-2.0"
description = "AllenNLP integration for Shiba: Japanese CANINE model"
readme = "README.md"
homepage = "https://github.com/shunk031/allennlp-shiba-model"
repository = "https://github.com/shunk031/allennlp-shiba-model"
authors = ["Shunsuke KITADA <[email protected]>"]
keywords = [
"natural language processing",
"deep learning",
"transformers",
"allennlp",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.7"
allennlp = "^2.5.0"
shiba-model = "^0.1.0"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
isort = "^5.9.1"
flake8 = "^3.9.2"
mypy = "^0.910"
pytest = "^6.2.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-dynamic-versioning]
enable = true