File size: 848 Bytes
1ceb840
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[tool.poetry]
name = "BDPC"
version = "0.1.0"
description = "something"
authors = ["ANON"]

readme = 'README.md'  # Markdown files are supported
keywords = ['research', 'evaluation', 'classification', 'documetns']

classifiers = [
    "Development Status :: 1 - Planning",
    "Environment :: Web Environment",
    "Operating System :: POSIX :: Linux",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3 :: Only",
    "Topic :: Scientific/Engineering :: Artificial Intelligence"
]

[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.24.1"
evaluate = "^0.4.0"
scikit-learn = "^1.2.0"
transformers = "^4.26.0"
pandas = "^1.5.3"
torch = "^1.13.1"
pillow = "^9.4.0"

[tool.poetry.dev-dependencies]
pytest = "^3.10.1"
pytest-cov = "^2.9.0"


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