Skip to content

Commit ec5c509

Browse files
committed
Distro fixes
1 parent 3066a0f commit ec5c509

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import io
33

4-
from setuptools import setup
4+
from setuptools import setup, find_packages
55

66

77
cwd = os.path.abspath(os.path.dirname('__file__'))
@@ -11,15 +11,14 @@
1111

1212
setup(
1313
name='jolokia',
14-
version='0.1.0a3',
14+
version='0.1.0a4',
1515
description='A Python Jolokia client',
1616
long_description=long_description,
1717
url='https://github.com/wbrefvem/python-jolokia',
1818
author='Will Refvem',
1919
author_email='wbrefvem@gmail.com',
2020
license='Apache 2.0',
21-
packages=['jolokia'],
22-
package_dir={'jolokia': 'jolokia'},
21+
packages=find_packages(exclude=['tests', 'tests.*']),
2322

2423
classifiers=[
2524
'Development Status :: 3 - Alpha',

0 commit comments

Comments
 (0)