Skip to content

Commit

Permalink
setup.py: Detect packages automatically
Browse files Browse the repository at this point in the history
This should fix the missing `threema.gateway.bin` package in the
published distribution.
  • Loading branch information
dbrgn authored and lgrahl committed May 23, 2017
1 parent 577b8bf commit b5911f4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
import os
import sys

from setuptools import setup
from setuptools import (
find_packages,
setup,
)


def get_version():
Expand Down Expand Up @@ -48,7 +51,7 @@ def read(file):
setup(
name='threema.gateway',
version=get_version(),
packages=['threema', 'threema.gateway'],
packages=find_packages(),
namespace_packages=['threema'],
install_requires=[
'py_lru_cache>=0.1.4,<0.2',
Expand Down

0 comments on commit b5911f4

Please sign in to comment.