-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
98 lines (95 loc) · 1.89 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[metadata]
name = ml2
version = attr: ml2.__version__
description = Machine Learning for Mathematics and Logics
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords =
machine learning
deep learning
mathematics
logics
neural-symbolic
system 2
license = MIT License
license_file = LICENSE
url = https://github.com/reactive-systems/ml2
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
packages = find:
install_requires =
docker
google-cloud-storage
grpcio
matplotlib
nltk
numpy
packaging
pandas
sly
tqdm
wandb
python_requires = >=3.8
[options.extras_require]
jp =
jupyter
pt =
torch
tf =
tensorflow >=2.13
tensorflow-metal >=1.0; platform_machine == "arm64" and platform_system == "Darwin"
tf-legacy =
tensorflow >=2.10.0, <2.12; platform_machine != "arm64" or platform_system != "Darwin"
tensorflow-macos >=2.10.0, <2.12; platform_machine == "arm64" and platform_system == "Darwin"
hf =
datasets
transformers
ray =
ray[default, tune]
full =
ml2[jp, pt, tf, hf, ray]
dev =
black
flake8
flake8-quotes
grpcio-tools
isort
mypy
mypy-protobuf
pre-commit
pytest
rbql
rstcheck
sphinx==4.0.2
package =
setuptools>=46.4
wheel
build
twine
[flake8]
exclude =
.git,
__pycache__,
dist,
*pb2.py,
*pb2_grpc.py
ignore =
# whitespace before ':'
E203,
# line too long
E501,
# ambiguous variable name
E741,
# line break before binary operator
W503
max-line-length = 99
per-file-ignores =
# imported but unused
__init__.py: F401
inline-quotes = double