Skip to content

Commit

Permalink
Adding the package requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
haz committed Dec 11, 2024
1 parent 46278c8 commit 5a6acd9
Showing 1 changed file with 22 additions and 12 deletions.
34 changes: 22 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,30 @@
long_description = fh.read()

setup(
name='lang2pddl',
version='0.1.3',
packages=find_packages(exclude=['tests']),
description='Library to connect LLMs and planning tasks',
name="lang2pddl",
version="0.1.4",
packages=find_packages(exclude=["tests"]),
description="Library to connect LLMs and planning tasks",
long_description=long_description,
long_description_content_type="text/markdown",
author='Marcus Tantakoun',
author_email='[email protected]',
license='MIT',
url='https://github.com/AI-Planning/l2p',
author="Marcus Tantakoun",
author_email="[email protected]",
install_requires=[
"openai",
"tiktoken",
"retry",
"pddl",
"typing_extensions",
"transformers>=4.43.1",
"torch>=2.2",
"accelerate>=0.26.0",
],
license="MIT",
url="https://github.com/AI-Planning/l2p",
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
python_requires=">=3.10",
)

0 comments on commit 5a6acd9

Please sign in to comment.