File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ include LICENSE
2
2
include CHANGELOG.md
3
3
include README.md
4
4
include requirements/*
5
+ recursive-exclude docs *
5
6
recursive-exclude tests *
Original file line number Diff line number Diff line change 14
14
import sys
15
15
sys .path .insert (0 , os .path .abspath ('../..' ))
16
16
17
- from optimizely .version import __version__
17
+ from optimizely .version import __version__ # noqa: E402
18
18
19
19
# -- Project information -----------------------------------------------------
20
20
Original file line number Diff line number Diff line change 51
51
'Programming Language :: Python :: 3.5' ,
52
52
'Programming Language :: Python :: 3.6' ,
53
53
],
54
- packages = find_packages (exclude = ['tests' ]),
54
+ packages = find_packages (exclude = ['docs' , ' tests' ]),
55
55
extras_require = {'test' : TEST_REQUIREMENTS },
56
56
install_requires = REQUIREMENTS ,
57
57
tests_require = TEST_REQUIREMENTS ,
You can’t perform that action at this time.
0 commit comments