From 67203fcd57895045a248d6956f686c66d67047cf Mon Sep 17 00:00:00 2001 From: Marcos Pereira Date: Wed, 23 Aug 2017 11:36:27 -0300 Subject: [PATCH] Configured packages in setup.py --- docs/source/conf.py | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index fc7baec..4114863 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,9 +60,9 @@ author = 'Marcos Pereira' # built documents. # # The short X.Y version. -version = '0.6.4' +version = '0.6.5' # The full version, including alpha/beta/rc tags. -release = '0.6.4' +release = '0.6.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index e474510..173e1ac 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ from setuptools import setup setup( name='python-keycloak', - version='0.6.4', + version='0.6.5', url='https://github.com/marcospereirampj/python-keycloak', license='GNU General Public License - V3', author='Marcos Pereira', author_email='marcospereira.mpj@gmail.com', keywords='keycloak openid', description=u'python-keycloak is a Python package providing access to the Keycloak API.', - packages=['keycloak'], + packages=['keycloak', 'keycloak.authorization', 'keycloak.test'], install_requires=['requests==2.18.3', 'httmock==1.2.5', 'python-jose==1.3.2'], classifiers=[ 'Programming Language :: Python :: 3',