Skip to content

Commit

Permalink
Merge 3504665 into 1b6c7f6
Browse files Browse the repository at this point in the history
  • Loading branch information
aliabbasrizvi committed May 12, 2020
2 parents 1b6c7f6 + 3504665 commit 037fd9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ include LICENSE
include CHANGELOG.md
include README.md
include requirements/*
recursive-exclude docs *
recursive-exclude tests *
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import sys
sys.path.insert(0, os.path.abspath('../..'))

from optimizely.version import __version__
from optimizely.version import __version__ # noqa: E402

# -- Project information -----------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=['tests']),
packages=find_packages(exclude=['docs', 'tests']),
extras_require={'test': TEST_REQUIREMENTS},
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIREMENTS,
Expand Down

0 comments on commit 037fd9e

Please sign in to comment.