Skip to content

Commit

Permalink
fixed setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmancuso committed Jan 16, 2022
1 parent d9117e9 commit 36a564d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os

meta = {}
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'src/masonite', '__version__.py'), 'r') as f:
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'src/masonite', '__init__.py'), 'r') as f:
exec(f.read(), meta)

with open("README.md", "r") as fh:
Expand Down Expand Up @@ -80,6 +80,16 @@
# simple. Or you can use find_packages().
packages=[
"masonite",
"masonite.api",
"masonite.api.authentication",
"masonite.api.commands",
"masonite.api.controllers",
"masonite.api.facades",
"masonite.api.guards",
"masonite.api.middleware",
"masonite.api.providers",
"masonite.api.stubs",
"masonite.api.stubs.routes",
"masonite.auth",
"masonite.authentication.guards",
"masonite.authentication.models",
Expand Down

0 comments on commit 36a564d

Please sign in to comment.