-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
103 lines (67 loc) · 1.4 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
[metadata]
name = clinguin
version = 2.1.1
author = Alexander Beiser, Susana Hahn (Potassco)
author_email = [email protected], [email protected]
description = An interactive visualizer for clingo
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/krr-up/clinguin
[options]
packages = find:
include_package_data=True
install_requires =
clingo
clorm>=1.4.1
clingo-dl
fastapi
networkx
uvicorn
clingraph
Pillow
clingexplaid>=1.0.14
[options.package_data]
* = clinguin/client/presentation/frontends/angular_frontend/clinguin_angular_frontend/*
[options.extras_require]
tkinter =
tk
doc =
sphinx==6.2.1
nbsphinx
furo
sphinx_inline_tabs
sphinx_copybutton
sphinxemoji
myst_parser
test =
nox
format =
nox
autoflake
isort
black
lint_flake8 =
nox
flake8
lint_pylint =
nox
pylint
[options.entry_points]
console_scripts =
clinguin = clinguin:main
[pylint.master]
recursive=True
no-space-check=trailing-comma,dict-seperator
method-naming-style=camelCase
function-naming-style=camelCase
argument-naming-style=snake_case
attr-naming-style=snake_case
class-attribute-naming-style=snake_case
class-naming-style=PascalCase
max-line-length=120
indent-string=" "
[pycodestyle]
in-place=true
recursive=true
aggressive=2
max-line-length=120