Skip to content

Commit e44dad7

Browse files
committed
correcting init
1 parent 4826277 commit e44dad7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
setup(
44
name='simple_playgrounds',
5-
version='0.9.7',
5+
version='0.9.8',
66
description='Simulator for AGI and RL',
77
author='Michael Garcia Ortiz',
88
author_email='[email protected]',
9-
packages=['simple_playgrounds']
9+
packages=[package for package in find_packages()
10+
if package.startswith('simple_playgrounds')]
1011
)

0 commit comments

Comments
 (0)