Skip to content

Commit 1c4e745

Browse files
authored
Merge pull request #35 from nginxinc/import-ext-fix
Import ext fix
2 parents 6bc8eb4 + ff09bd9 commit 1c4e745

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

crossplane/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__summary__ = 'Reliable and fast NGINX configuration file parser.'
1111
__url__ = 'https://github.com/nginxinc/crossplane'
1212

13-
__version__ = '0.3.0'
13+
__version__ = '0.3.1'
1414

1515
__author__ = 'Arie van Luttikhuizen'
1616
__email__ = 'aluttik@gmail.com'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
import shutil
88
import sys
99

10-
from setuptools import setup, Command
10+
from setuptools import find_packages, setup, Command
1111

1212
from crossplane import (
1313
__title__, __summary__, __url__, __version__, __author__, __email__,
14-
__package__, __license__
14+
__license__
1515
)
1616

1717
here = os.path.abspath(os.path.dirname(__file__))
@@ -64,7 +64,7 @@ def run(self):
6464
author=__author__,
6565
author_email=__email__,
6666
url=__url__,
67-
packages=[__package__],
67+
packages=find_packages(exclude=['tests']),
6868
license=__license__,
6969
classifiers=[
7070
'Development Status :: 3 - Alpha',

0 commit comments

Comments
 (0)