-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 1.71 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "logitorch"
version = "0.0.1a2"
authors = [
{name = "Chadi Helwe", email = "chadi.helwe@gmail.com"}
]
description = "LogiTorch is a pytorch-based library for logical reasoning in natural language"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache License 2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"torch~=2.8.0",
"lightning~=2.5.0",
"transformers~=4.57.0",
"requests~=2.32.0",
"tqdm~=4.66.0",
"textblob~=0.18.0",
"nltk~=3.9.0",
"protobuf~=6.32.0",
"datasets~=4.1.0",
"evaluate~=0.4.6",
]
[project.optional-dependencies]
dev = [
"tox~=4.23.0",
"isort~=5.13.0",
"mypy~=1.13.0",
"black~=24.10.0",
"pytest~=8.3.0",
"flake8~=7.1.0",
"pre-commit~=4.0.0",
"types-requests~=2.32.0",
"sphinx~=8.1.0",
"sphinx-autoapi~=3.4.0",
"astroid<4.0", # Required by sphinx-autoapi 3.4.0
"furo~=2024.8.0",
]
[project.urls]
Homepage = "https://github.com/ChadiHelwe/logitorch"
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["test*"]
[tool.isort]
profile = "black"
multi_line_output = 3
src_paths = ["logitorch", "tests"]
skip = ["build",".tox","env"]
[tool.black]
line_length = 88
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
show_error_codes = true
exclude = "(docs)/"