Skip to content

Commit f8ee533

Browse files
chore(build): Making sure docs is excluded from build (#258)
1 parent 1b6c7f6 commit f8ee533

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ include LICENSE
22
include CHANGELOG.md
33
include README.md
44
include requirements/*
5+
recursive-exclude docs *
56
recursive-exclude tests *

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import sys
1515
sys.path.insert(0, os.path.abspath('../..'))
1616

17-
from optimizely.version import __version__
17+
from optimizely.version import __version__ # noqa: E402
1818

1919
# -- Project information -----------------------------------------------------
2020

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
'Programming Language :: Python :: 3.5',
5252
'Programming Language :: Python :: 3.6',
5353
],
54-
packages=find_packages(exclude=['tests']),
54+
packages=find_packages(exclude=['docs', 'tests']),
5555
extras_require={'test': TEST_REQUIREMENTS},
5656
install_requires=REQUIREMENTS,
5757
tests_require=TEST_REQUIREMENTS,

0 commit comments

Comments
 (0)