-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
65 lines (61 loc) · 1.29 KB
/
setup.cfg
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
[metadata]
name = logitorch
version = 0.0.1a2
author = Chadi Helwe
author_email = [email protected]
url = https://github.com/ChadiHelwe/logitorch
license = Apache License 2.0
description = LogiTorch is a pytorch-based library for logical reasoning in natural language
long_description_content_type = text/markdown
long_description = file: README.md
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
zip_safe = False
include_package_data = True
packages = find:
package_dir =
=src
install_requires =
torch~=2.0.0
pytorch-lightning~=1.6.0
transformers~=4.36.0
requests~=2.28.0
tqdm~=4.64.0
textblob~=0.17.0
nltk~=3.7.0
protobuf==3.20.0
datasets==2.14.5
evaluate==0.4.0
[options.extras_require]
dev =
tox~=3.25.0
isort~=5.9.0
mypy~=1.2.0
black~=19.0
pytest~=7.1.0
flake8~=3.9.0
pre-commit~=2.20.0
types-requests~=2.28.0
sphinx~=4.4.0
sphinx-autoapi~=1.8.0
furo~=2022.6.0
[options.packages.find]
where = src
exclude = test*
[flake8]
max-line-length = 88
exclude =
.git,
__pycache__,
docs/source/conf.py,
old,
env,
build,
dist
extend-ignore =
E203
E501