Skip to content

Commit

Permalink
Merge pull request vaibhavstark#3 from sakshiupadhyay002/patch-1
Browse files Browse the repository at this point in the history
Update setup.py
  • Loading branch information
vaibhavstark authored Oct 9, 2022
2 parents b7a36eb + 3dd412d commit b207019
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@


with open('README.md') as readme:
long_description = readme.read()
long_description = readme.read()

with open('requirements.txt') as requirements_production:
install_requires = requirements_production.readlines()

setup(
name='wger',
description='FLOSS workout, fitness and weight manager/tracker written with Django',
long_description=long_description,
long_description_content_type='text/markdown',
long_description = long_description,
long_description_content_type = 'text/markdown',
version=get_version(),
url='https://github.com/wger-project',
author='Roland Geider',
Expand All @@ -49,7 +49,7 @@
'Programming Language :: Python :: 3.10',
],

install_requires=install_requires,
install_requires = install_requires,
entry_points={
'console_scripts': [
'wger = wger.__main__:main',
Expand Down

0 comments on commit b207019

Please sign in to comment.