forked from IBM/nl2ltl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
77 lines (67 loc) · 1.55 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
[metadata]
name=nl2ltl
author=Tathagata Chakraborti, Francesco Fuggitti
author_email=tathagata.chakraborti1@ibm.com, francesco.fuggitti@ibm.com
version = attr: nl2ltl.__version__
description = From Natural Language to Linear-time Temporal Logic
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
keywords = natural language nlu ltl temporal logic
license = MIT
license_files = LICENSE
classifiers =
Intended Audience :: Science/Research
Environment :: Console
Environment :: Web Environment
Development Status :: 2 - Pre-Alpha
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: MacOS
Operating System :: Unix
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development
[option.project_urls]
"Source": "https://github.com/IBM/nl2ltl"
[options]
zip_safe = False
include_package_data = True
packages = find:
scripts =
install_requires =
rasa
openai
pylogics
python_requires= >=3.8
[options.package_data]
* = *.txt, *.md
[options.packages.find]
include =
nl2ltl*
exclude =
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[flake8]
ignore = W503
exclude =
.tox,
.git,
__pycache__,
build,
dist,
tests/fixtures/*,
*.md,
*.pyc,
*.egg-info,
.cache,
.eggs,
nl2ltl/__init__.py,
scripts/whitelist.py
max-complexity = 10
max-line-length = 120
[mypy]
python_version = 3.8
strict_optional = True