-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 898 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
# pyproject.toml
[build-system]
requires = ["setuptools>=58.1.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "infer-camembert"
version = "0.2.0"
description = "Python implementation for text classification inference with CamemBERT fine-tuned models"
readme = "README.md"
authors = [{ name = "Cyril Dever", email = "cdever@pep-s.com" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = [
"ai",
"transformers",
"inference",
"bert",
"camembert",
]
dependencies = [
"numpy >= 1.25.0",
"torch >= 2.1.0",
"transformers >= 4.34.1",
]
requires-python = ">=3.10.2"
[project.urls]
Homepage = "https://github.com/cyrildever/infer-camembert"
[project.scripts]
infer-camembert = "infercamembert.__main__:main"