-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (22 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(name="matrix-e2ee-filter",
version="1.0.0",
packages=setuptools.find_packages(),
description="Encrypted room filter module for Synapse",
long_description=long_description,
long_description_content_type="text/markdown",
author="Konstantin Sharlaimov",
author_email="konstantin.sharlaimov@gmail.com",
license="MPL",
install_requires=["matrix-synapse"],
url="https://github.com/digitalentity/matrix_encryption_disabler",
project_urls={
"Bug Tracker": "https://github.com/digitalentity/matrix_encryption_disabler/issues",
},
classifiers=[],
python_requires=">=3.6",
)