Skip to content

Commit

Permalink
Implemented changes suggested
Browse files Browse the repository at this point in the history
- Added: TODO values
- Removed: redundant spaces around operator while calling setup()
  • Loading branch information
singh-lokendra committed Apr 11, 2019
1 parent 249e38c commit 08d5344
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions setup.py
Expand Up @@ -18,20 +18,16 @@ def _post_install():

setup(
name='apertium-python',
# version='',
# TODO: Add version description, keywords, author, author_email
license='GNU General Public License v3.0 ',
# 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',
],
test_suite = 'tests',
test_suite='tests',
packages=find_packages(exclude=['tests']),
cmdclass={
'install': PostInstallCommand,
Expand Down

0 comments on commit 08d5344

Please sign in to comment.