File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 14
14
15
15
from setuptools import setup , find_packages
16
16
17
+ from pathlib import Path
18
+ long_description = (Path (__file__ ).parent / "README.md" ).read_text ()
17
19
18
20
setup (
19
21
name = 'pyRDDLGym-rl' ,
20
- version = '0.1 ' ,
22
+ version = '0.2 ' ,
21
23
author = "Michael Gimelfarb, Ayal Taitler, Scott Sanner" ,
22
24
author_email = "mike.gimelfarb@mail.utoronto.ca, ataitler@gmail.com, ssanner@mie.utoronto.ca" ,
23
25
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' ,
24
28
license = "MIT License" ,
25
29
url = "https://github.com/pyrddlgym-project/pyRDDLGym-rl" ,
26
30
packages = find_packages (),
31
35
package_data = {'' : ['*.cfg' ]},
32
36
include_package_data = True ,
33
37
classifiers = [
34
- "Development Status :: 3 - Alpha " ,
38
+ "Development Status :: 4 - Beta " ,
35
39
"Intended Audience :: Science/Research" ,
36
40
"License :: OSI Approved :: MIT License" ,
37
41
"Natural Language :: English" ,
You can’t perform that action at this time.
0 commit comments