forked from potassco/eclingo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.4 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (44 loc) · 1.4 KB
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
from setuptools import setup
from eclingo.main import __version__
with open('README.md', mode='r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='eclingo',
version=__version__,
description='A solver for epistemic logic programs.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Javier Garea',
author_email='javier.garea@udc.es',
url='https://github.com/potassco/eclingo',
license='MIT',
keywords=[
'artificial intelligence',
'logic programming',
'answer set programming',
'epistemic specifications'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
python_requires='>=3.6',
packages=[
'eclingo',
'eclingo.preprocessor',
'eclingo.parser',
'eclingo.solver',
'eclingo.postprocessor',
'eclingo.utils'
],
entry_points={
'console_scripts': ['eclingo=eclingo.__main__:main']
},
include_package_data=True
)