forked from potassco/python-clingox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 776 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 776 Bytes
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
from textwrap import dedent
from setuptools import setup
setup(
version="1.2.1",
name="clingox",
description="Support library for clingo.",
long_description=dedent(
"""\
Please check the [API documentation](https://potassco.org/clingo/python-api/current/) on how to use this module.
"""
),
long_description_content_type="text/markdown",
author="Roland Kaminski",
author_email="kaminski@cs.uni-potsdam.de",
license="MIT",
url="https://github.com/potassco/python-clingox",
install_requires=[
"clingo>=5.5",
'dataclasses ; python_version<"3.7"',
],
packages=["clingox", "clingox.testing"],
package_data={"clingox": ["py.typed"]},
zip_safe=False,
python_requires=">=3.7",
)