Skip to content

Commit

Permalink
setup: don't install docs and tests
Browse files Browse the repository at this point in the history
Prevent the bug fixed in 2adaa3f from reappearing by ensuring that
the ``docs`` and the ``tests`` folders are not discovered by the
setup script.

Signed-off-by: Jacopo Notarstefano <jacopo.notarstefano@gmail.com>
  • Loading branch information
jacquerie committed Apr 3, 2018
1 parent 5b23753 commit bf30d3c
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
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of Workflow.
# Copyright (C) 2011, 2014, 2015, 2016 CERN.
# Copyright (C) 2011, 2014, 2015, 2016, 2018 CERN.
#
# Workflow is free software; you can redistribute it and/or modify it
# under the terms of the Revised BSD License; see LICENSE file for
Expand Down Expand Up @@ -52,7 +52,7 @@
if platform.python_version_tuple() < ('3', '4'):
install_requires.append('enum34>=1.0.4')

packages = find_packages()
packages = find_packages(exclude=['docs', 'tests'])

URL = 'https://github.com/inveniosoftware/workflow'

Expand Down

0 comments on commit bf30d3c

Please sign in to comment.