From f84c27b00c26ff41e204c169c36b367c5a6f2318 Mon Sep 17 00:00:00 2001 From: Anthony Miyaguchi Date: Fri, 17 Feb 2023 16:04:27 -0500 Subject: [PATCH] Use find_packages in setup --- setup.py | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) 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"], +)