2021-05-02 10:47:19 +02:00

25 lines
757 B
Python

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