diff --git a/setup.py b/setup.py index 17f4f75..c31188c 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,10 @@ -from setuptools import setup -setup(name='Lie', - version='1.0', - description='Classes implementing Lie Groups and Algebras', - author='Varun Madabushi', - packages=['Lie'], - install_requires=['numpy', 'scipy', 'matplotlib'] - ) \ No newline at end of file +from setuptools import setup, find_packages + +setup( + name="Lie", + version="1.0.1", + description="Classes implementing Lie Groups and Algebras", + author="Varun Madabushi", + packages=find_packages(), + install_requires=["numpy", "scipy", "matplotlib"], +)