-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 899 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='lifted-pddl',
version='1.2.3',
description='A lightweight framework for parsing PDDL in lifted form.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/AI-Planning/lifted-pddl',
author='Carlos Núñez Molina',
author_email='[email protected]',
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
keywords='automated_planning PDDL parser',
install_requires=['tarski'],
include_package_data=True,
entry_points={
'console_scripts': [
'lifted_pddl=lifted_pddl.__main__:main'
],
}
)