Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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__ = 'aluttik@gmail.com'
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