commit ff12a5f73c0d70280859a5353db46c4028d7c072 Author: Vaydheesh Date: Sun Apr 7 06:42:54 2019 +0530 Implemented changes suggested Sorted the import libraries Added: TODO variables diff --git a/setup.py b/setup.py index 078fb45..f1fc80c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,8 @@ -from setuptools import setup -from setuptools.command.install import install from atexit import register from os import path +from setuptools import setup, find_packages +from setuptools.command.install import install + import installer @@ -18,18 +19,19 @@ class PostInstallCommand(install): setup( name='apertium-python', # version='', - packages=['apertium', 'apertium.analysis', - 'apertium.generation', 'apertium.translation'], - url='https://github.com/apertium/apertium-python', license='GNU General Public License v3.0 ', - # author='', - # author_email='', # description='', long_description=open(path.join(path.abspath(path.dirname(__file__)), 'README.md')).read(), + long_description_content_type='text/markdown; charset=UTF-8', + # keywords='', + # author='', + # author_email='', + url='https://github.com/apertium/apertium-python', python_requires='>=3.4', install_requires=[ 'apertium-streamparser==5.0.2', ], + packages=find_packages(exclude=['tests']), cmdclass={ 'install': PostInstallCommand, },