Skip to content

Commit da1600c

Browse files
Update to pypi version 0.2
1 parent 05ca435 commit da1600c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,17 @@
1414

1515
from setuptools import setup, find_packages
1616

17+
from pathlib import Path
18+
long_description = (Path(__file__).parent / "README.md").read_text()
1719

1820
setup(
1921
name='pyRDDLGym-rl',
20-
version='0.1',
22+
version='0.2',
2123
author="Michael Gimelfarb, Ayal Taitler, Scott Sanner",
2224
author_email="mike.gimelfarb@mail.utoronto.ca, ataitler@gmail.com, ssanner@mie.utoronto.ca",
2325
description="pyRDDLGym-rl: Wrappers for reinforcement learning algorithms (i.e. stable baselines 3) to work with pyRDDLGym.",
26+
long_description=long_description,
27+
long_description_content_type='text/markdown',
2428
license="MIT License",
2529
url="https://github.com/pyrddlgym-project/pyRDDLGym-rl",
2630
packages=find_packages(),
@@ -31,7 +35,7 @@
3135
package_data={'': ['*.cfg']},
3236
include_package_data=True,
3337
classifiers=[
34-
"Development Status :: 3 - Alpha",
38+
"Development Status :: 4 - Beta",
3539
"Intended Audience :: Science/Research",
3640
"License :: OSI Approved :: MIT License",
3741
"Natural Language :: English",

0 commit comments

Comments
 (0)