Skip to content

Commit

Permalink
Auto-find packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yatoom committed Mar 21, 2021
1 parent c9c4cf5 commit dedd3d1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages
setup(
name='voronoi',
packages=['voronoi', 'voronoi.visualization', 'voronoi.tree', 'voronoi.nodes', "voronoi.graph", "voronoi.events", "voronoi.tests"],
Expand All @@ -10,7 +10,5 @@
download_url='',
keywords=['voronoi', 'polygon', 'fortune', 'algorithm'],
classifiers=[],
install_requires=[
"numpy", "matplotlib",
]
install_requires=find_packages()
)

0 comments on commit dedd3d1

Please sign in to comment.