Skip to content

Commit

Permalink
Merge pull request #5 from ivapylibs/fix
Browse files Browse the repository at this point in the history
Use find_packages in setup
acmiyaguchi authored Feb 17, 2023
2 parents 9bfb1f9 + f84c27b commit 0ef5659
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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']
)
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"],
)

0 comments on commit 0ef5659

Please sign in to comment.