Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import os

from setuptools import setup
from setuptools import setup, find_packages

ROOT = os.path.abspath(os.path.dirname(__file__))

Expand All @@ -28,7 +28,7 @@
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Version Control :: Git",
],
packages=["openfast_toolbox"],
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"matplotlib",
Expand Down
Loading