-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·31 lines (29 loc) · 1.09 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
from textwrap import dedent
setup(
version = '2.1.3',
name = 'telingo',
description = 'System to solve dynamic temporal logic programs.',
long_description = dedent('''\
Telingo is a solver for temporal programs. It leaverages clingo's input
language and scripting cababilities to parse and solve programs with
temporal formulas. As such the input of telingo is valid clingo input
supporting all clingo language features like for example aggregates;
only the way programs are grounded and solved is adjusted.
'''),
long_description_content_type='text/markdown',
author = 'Roland Kaminski & Francois Laferriere',
author_email='kaminski@cs.uni-potsdam.de',
url='https://github.com/potassco/telingo',
license = 'MIT',
install_requires=['clingo>=5.6'],
packages = ['telingo', 'telingo.theory', 'telingo.transformers'],
test_suite = 'telingo.tests',
zip_safe = False,
entry_points = {
'console_scripts': [
'telingo = telingo:main',
]
}
)