synapse-s3-storage-provider/setup.py

21 lines
504 B
Python
Raw Normal View History

2018-08-21 14:30:22 +00:00
from setuptools import setup
__version__ = "1.0"
setup(
name='synapse-s3-storage-provider',
version=__version__,
zip_safe=False,
url="https://github.com/matrix-org/synapse-s3-storage-provider",
py_modules=['s3_storage_provider'],
2019-06-03 14:06:06 +00:00
scripts=['scripts/s3_media_upload'],
2018-08-23 17:55:50 +00:00
install_requires=[
2019-06-03 14:06:06 +00:00
'boto3>=1.9.23<2.0',
'botocore>=1.12.23<2.0',
'humanize>=0.5.1<0.6',
2019-09-30 16:08:51 +00:00
'psycopg2>=2.7.5<3.0',
2019-06-03 14:06:06 +00:00
'PyYAML>=3.13<4.0',
'tqdm>=4.26.0<5.0'
2018-08-23 17:55:50 +00:00
],
2018-08-21 14:30:22 +00:00
)