From af3ce6504c9f6cc8a0d28832a3218ed99ea2e1cc Mon Sep 17 00:00:00 2001 From: Vlad Dmitrijevits <2tunnels@proton.me> Date: Thu, 9 Mar 2023 15:10:59 +0100 Subject: [PATCH] Fix setup config (#17) --- setup.py | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/setup.py b/setup.py index dcfc3f2..7116bfb 100755 --- a/setup.py +++ b/setup.py @@ -1,11 +1,6 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- - -try: - from setuptools import setup -except ImportError: - from distutils.core import setup +from setuptools import setup, find_packages with open('README.rst') as readme_file: @@ -24,17 +19,13 @@ setup( name='langusta_client', - version='0.3.2', + version='0.3.4', description="Django application to push/pull translations from Langusta service", long_description=readme + '\n\n' + history, author="Vasyl Dizhak", author_email='vasyl.dizhak@moneypark.com', url='https://github.com/rootart/langusta_client', - packages=[ - 'langusta_client', - ], - package_dir={'langusta_client': - 'langusta_client'}, + packages=find_packages(include=['langusta_client', 'langusta_client.*']), include_package_data=True, install_requires=requirements, license="ISCL",