Skip to content

Commit

Permalink
Fixed setup package finding
Browse files Browse the repository at this point in the history
  • Loading branch information
radiac committed Apr 12, 2018
1 parent d138742 commit 5b7f757
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
@@ -1,5 +1,5 @@
import os
from setuptools import setup
from setuptools import setup, find_packages

VERSION = "0.6.2"

Expand Down Expand Up @@ -40,6 +40,7 @@ def read(fname):
},
test_suite = 'nose.collector',
zip_safe=True,
packages=['mara'],
scripts=['bin/mara']
packages=find_packages(exclude=('docs', 'tests*',)),
scripts=['bin/mara'],
include_package_data=True,
)

0 comments on commit 5b7f757

Please sign in to comment.