reformat code;

This commit is contained in:
Marco Zeisler 2021-04-30 16:17:24 +02:00
parent ed1d23c7cf
commit a4e6a64444

View File

@ -4,21 +4,19 @@ from setuptools import find_packages, setup
# allow setup.py to be run from any path # allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup( setup(name='waecm-2021-group-04',
name='waecm-2021-group-04', version='0.0.0',
version='0.0.0', packages=find_packages(),
packages=find_packages(), include_package_data=True,
include_package_data=True, install_requires=[
install_requires=[ 'Django==3.0.5',
'Django==3.0.5', 'djangorestframework==3.12.1',
'djangorestframework==3.12.1', 'djangorestframework-jwt==1.11.0',
'djangorestframework-jwt==1.11.0', 'django-cors-headers==3.5.0',
'django-cors-headers==3.5.0', 'whitenoise==5.2.0',
'whitenoise==5.2.0', 'oauth2==1.1.1',
'oauth2==1.1.1', 'oauthlib==3.1.0',
'oauthlib==3.1.0', 'py-jwt-validator==0.6.0'
'py-jwt-validator==0.6.0' ],
], license='BSD License', # example license
license='BSD License', # example license description='DESCRIPTION')
description='DESCRIPTION'
)