generated from potassco/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (43 loc) · 877 Bytes
/
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
[metadata]
name = fclingo
version = 0.1
author = Philipp Wanko
author_email = [email protected]
description = Solver for ASP modulo conditional linear constraints with founded variables
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
url = http://github.com/krr-up/fclingo
[options]
packages = find:
zip_safe = True
include_package_data = True
install_requires =
setuptools
clingo == 5.7.*
clingcon >= 5.2.1, == 5.2.*
[options.extras_require]
format =
black
isort
autoflake
lint_flake8 =
flake8
flake8-black
flake8-isort
lint_pylint =
pylint
typecheck =
types-setuptools
mypy
test =
coverage
doc =
sphinx
sphinx_rtd_theme
nbsphinx
dev =
fclingo[test,lint_pylint,lint_flake8]
[options.entry_points]
console_scripts =
fclingo = fclingo:__main__.main