shunk031 commited on
Commit
d59110e
1 Parent(s): 5089718

add poetry files

Browse files
Files changed (2) hide show
  1. poetry.lock +0 -0
  2. pyproject.toml +23 -0
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "huggingface-datasets-jglue"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["Shunsuke KITADA <shunsuke.kitada.0831@gmail.com>"]
6
+ readme = "README.md"
7
+ packages = [{include = "huggingface_datasets_jglue"}]
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.9"
11
+ datasets = "^2.10.0"
12
+
13
+
14
+ [tool.poetry.group.dev.dependencies]
15
+ black = "^23.1.0"
16
+ isort = "^5.12.0"
17
+ flake8 = "^6.0.0"
18
+ mypy = "^1.0.1"
19
+ pytest = "^7.2.1"
20
+
21
+ [build-system]
22
+ requires = ["poetry-core"]
23
+ build-backend = "poetry.core.masonry.api"