Skip to content

Commit

Permalink
Fix packages entry in setup.py
Browse files Browse the repository at this point in the history
orlo.routes is another package, perhaps it wasn't being included
sometimes?
  • Loading branch information
al4 committed Apr 4, 2017
1 parent b4fcedd commit 5d06c38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python

# from distutils.core import setup
from setuptools import setup
from setuptools import setup, find_packages
import multiprocessing # nopep8
import os

Expand Down Expand Up @@ -32,9 +32,9 @@
license='GPL',
long_description=open(os.path.join(__location__, 'README.md')).read(),
url='https://github.com/eBayClassifiedsGroup/orlo',
packages=[
'orlo',
],
packages=find_packages(
exclude=['tests', 'debian', 'docs', 'etc']
),
include_package_data=True,
install_requires=[
'Flask',
Expand Down

0 comments on commit 5d06c38

Please sign in to comment.