Skip to content

Commit 08d5344

Browse files
Implemented changes suggested
- Added: TODO values - Removed: redundant spaces around operator while calling setup()
1 parent 249e38c commit 08d5344

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,16 @@ def _post_install():
1818

1919
setup(
2020
name='apertium-python',
21-
# version='',
21+
# TODO: Add version description, keywords, author, author_email
2222
license='GNU General Public License v3.0 ',
23-
# description='',
2423
long_description=open(path.join(path.abspath(path.dirname(__file__)), 'README.md')).read(),
2524
long_description_content_type='text/markdown; charset=UTF-8',
26-
# keywords='',
27-
# author='',
28-
# author_email='',
2925
url='https://github.com/apertium/apertium-python',
3026
python_requires='>=3.4',
3127
install_requires=[
3228
'apertium-streamparser==5.0.2',
3329
],
34-
test_suite = 'tests',
30+
test_suite='tests',
3531
packages=find_packages(exclude=['tests']),
3632
cmdclass={
3733
'install': PostInstallCommand,

0 commit comments

Comments
 (0)