add some packaging

This commit is contained in:
Amber Brown 2018-08-22 00:30:22 +10:00
parent 54c58922de
commit 6abb9aefb7
3 changed files with 16 additions and 0 deletions

3
.gitignore vendored
View file

@ -99,3 +99,6 @@ ENV/
# mypy # mypy
.mypy_cache/ .mypy_cache/
# Temp files
*~

2
MANIFEST.in Normal file
View file

@ -0,0 +1,2 @@
include LICENSE
include *.md

11
setup.py Normal file
View file

@ -0,0 +1,11 @@
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'],
)