mirror of
https://github.com/vale981/ray
synced 2025-03-11 21:56:39 -04:00

* add policy gradient example * fix typos * Minor changes plus some documentation. * Minor fixes.
9 lines
234 B
Python
9 lines
234 B
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(name="reinforce",
|
|
version="0.0.1",
|
|
packages=find_packages())
|