27 lines
727 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='federated-storage-middleware',
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',
'channels==3.0.1',
'channels_redis==3.2.0',
'whitenoise==5.2.0',
'Pillow==8.0.1',
'dropbox==10.10.0',
'pymongo=3.11.1',
],
license='BSD License', # example license
description='DESCRIPTION'
)