Skip to content

Commit

Permalink
Setup fix (#186)
Browse files Browse the repository at this point in the history
* setup_fix

* fix setup
  • Loading branch information
DanielLSM authored and dementrock committed Nov 20, 2017
1 parent 9adb7e6 commit b3a2899
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# setup.py
from setuptools import setup
from setuptools import setup,find_packages

setup(
name='rllab',
packages=[package for package in find_packages()
if package.startswith('rllab')],
version='0.1.0',
packages=['rllab'],
)

0 comments on commit b3a2899

Please sign in to comment.