Skip to content

Commit

Permalink
Merge pull request #35 from nginxinc/import-ext-fix
Browse files Browse the repository at this point in the history
Import ext fix
  • Loading branch information
aluttik authored Mar 15, 2018
2 parents 6bc8eb4 + ff09bd9 commit 1c4e745
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crossplane/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
__summary__ = 'Reliable and fast NGINX configuration file parser.'
__url__ = 'https://github.com/nginxinc/crossplane'

__version__ = '0.3.0'
__version__ = '0.3.1'

__author__ = 'Arie van Luttikhuizen'
__email__ = '[email protected]'
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
import shutil
import sys

from setuptools import setup, Command
from setuptools import find_packages, setup, Command

from crossplane import (
__title__, __summary__, __url__, __version__, __author__, __email__,
__package__, __license__
__license__
)

here = os.path.abspath(os.path.dirname(__file__))
Expand Down Expand Up @@ -64,7 +64,7 @@ def run(self):
author=__author__,
author_email=__email__,
url=__url__,
packages=[__package__],
packages=find_packages(exclude=['tests']),
license=__license__,
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down

0 comments on commit 1c4e745

Please sign in to comment.