29 lines
882 B
Python
29 lines
882 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',
|
|
'feedsearch==1.0.12',
|
|
'Pillow==8.2.0',
|
|
'python-dateutil==2.8.1',
|
|
'gunicorn==20.1.0'
|
|
],
|
|
license='BSD License', # example license
|
|
description='DESCRIPTION')
|