We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3066a0f commit ec5c509Copy full SHA for ec5c509
1 file changed
setup.py
@@ -1,7 +1,7 @@
1
import os
2
import io
3
4
-from setuptools import setup
+from setuptools import setup, find_packages
5
6
7
cwd = os.path.abspath(os.path.dirname('__file__'))
@@ -11,15 +11,14 @@
11
12
setup(
13
name='jolokia',
14
- version='0.1.0a3',
+ version='0.1.0a4',
15
description='A Python Jolokia client',
16
long_description=long_description,
17
url='https://github.com/wbrefvem/python-jolokia',
18
author='Will Refvem',
19
author_email='wbrefvem@gmail.com',
20
license='Apache 2.0',
21
- packages=['jolokia'],
22
- package_dir={'jolokia': 'jolokia'},
+ packages=find_packages(exclude=['tests', 'tests.*']),
23
24
classifiers=[
25
'Development Status :: 3 - Alpha',
0 commit comments