-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (31 loc) · 1.17 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
32
33
34
35
36
import mdpproblog
from setuptools import setup
import os
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename), 'r').read()
setup(
name='mdpproblog',
version=mdpproblog.__version__,
author='Thiago P. Bueno',
author_email='[email protected]',
description='A probabilistic logic programming framework to represent and solve MDPs.',
long_description=read('README.rst'),
license='GNU General Public License v3.0',
keywords=['planning', 'mdp', 'problog', 'probabilistic logic programming'],
url='https://github.com/thiagopbueno/mdp-problog',
packages=['mdpproblog', 'tests'],
scripts=['bin/mdp-problog'],
install_requires=['problog'],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
)