Skip to content

Commit

Permalink
Fix setup config (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
2tunnels authored Mar 9, 2023
1 parent 3c0dc6d commit af3ce65
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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",
Expand Down

0 comments on commit af3ce65

Please sign in to comment.