diff --git a/setup.py b/setup.py index adc759f..a54925f 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,18 @@ #!/usr/bin/env python3 -from distutils.core import setup +from setuptools import setup -setup(name='nbp', - version='0.1.0', - description='N-Body Physics Simulator', - author='Stephan Meijer', - author_email='me@stephanmeijer.com', - url='https://github.com/N-BodyPhysicsSimulator/Main', - license='GPL-3.0', - packages=['nbp'] - ) +setup( + name='nbp', + version='0.1.0', + description='N-Body Physics Simulator', + author='Stephan Meijer', + author_email='me@stephanmeijer.com', + url='https://github.com/N-BodyPhysicsSimulator/Main', + license='GPL-3.0', + packages=['nbp'], + install_requires=[ + 'numpy', + 'websockets' + ], +)