Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Fix setup.py so it includes subpackages
Browse files Browse the repository at this point in the history
ref #100
  • Loading branch information
Virgil Dupras committed Oct 3, 2017
1 parent 81d23e7 commit f0bd783
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from os.path import dirname
from os.path import join

from setuptools import setup
from setuptools import setup, find_packages

import lxdock

Expand All @@ -24,7 +24,7 @@ def read_relative_file(filename):
version=lxdock.__version__,
author='Virgil Dupras, Morgan Aubert',
author_email='',
packages=['lxdock'],
packages=find_packages(exclude=['tests.*', 'tests']),
include_package_data=True,
url='https://github.com/lxdock/lxdock',
license='GPLv3',
Expand Down

0 comments on commit f0bd783

Please sign in to comment.