-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 988 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sentimental-onix"
version = "1.0.0"
description = "spacy pipeline component for sentiment analysis using onnx"
readme = "README.md"
authors = [{ name = "sloev", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = ["spacy", "onnx", "sentiment", "english", "nlp"]
dependencies = [
"spacy >= 3.8.2",
"onnx >= 1.17.0",
"onnxruntime >= 1.19.2",
"numpy >= 2.0.2"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["black>=23.1.0", "pytest"]
[project.urls]
Homepage = "https://github.com/sloev/sentimental-onix"
[tool.setuptools]
include-package-data = false