Skip to content

Commit

Permalink
Changed setup to find all modules in the project.
Browse files Browse the repository at this point in the history
  • Loading branch information
piraz committed Oct 27, 2020
1 parent 7a4a67a commit 3e8ec0f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import peasant
from codecs import open
from setuptools import setup
from setuptools import find_packages, setup
import sys

try:
Expand Down Expand Up @@ -72,6 +72,8 @@ def resolve_requires(requirements_file):
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Application Frameworks"
],
packages=["peasant"],
packages=find_packages(),
package_dir={'peasant': "peasant"},
include_package_data=True,
install_requires=resolve_requires("requirements/basic.txt")
)

0 comments on commit 3e8ec0f

Please sign in to comment.