Skip to content

Commit

Permalink
Include test files in distro
Browse files Browse the repository at this point in the history
  • Loading branch information
zzhengnan committed Aug 5, 2020
1 parent 8c13470 commit e8a8bab
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
include LICENSE
graft iscan/tests
global-exclude *.pyc
2 changes: 1 addition & 1 deletion iscan/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.3'
__version__ = '0.3.4'
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[flake8]
max-line-length = 100
exclude =
build,
dist,
build/,
dist/,
iscan/std_lib.py,
ignore = F401 # Unused imports

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import setuptools

from iscan import __version__ as VERSION
import iscan


with open('README.md', 'r') as f:
Expand All @@ -12,7 +12,7 @@

setuptools.setup(
name='iscan',
version=VERSION,
version=iscan.__version__,
author='Zhengnan Zhao',
description='iscan helps you identify your project\'s third-party dependencies',
long_description=LONG_DESCRIPTION,
Expand Down

0 comments on commit e8a8bab

Please sign in to comment.