We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9adb7e6 commit b3a2899Copy full SHA for b3a2899
setup.py
@@ -1,8 +1,9 @@
1
# setup.py
2
-from setuptools import setup
+from setuptools import setup,find_packages
3
4
setup(
5
name='rllab',
6
+ packages=[package for package in find_packages()
7
+ if package.startswith('rllab')],
8
version='0.1.0',
- packages=['rllab'],
9
)
0 commit comments