mirror of
https://github.com/matrix-org/pantalaimon.git
synced 2025-06-02 21:42:20 -04:00
Initial commit.
This commit is contained in:
commit
d51d47334b
2 changed files with 118 additions and 0 deletions
23
setup.py
Normal file
23
setup.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="pantalaimon",
|
||||
version="0.1",
|
||||
url="https://github.com/poljar/pantalaimon",
|
||||
author="The Matrix.org Team",
|
||||
author_email="poljar@termina.org.uk",
|
||||
description=("A Matrix proxy daemon that adds E2E encryption "
|
||||
"capabilities."),
|
||||
license="Apache License, Version 2.0",
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
"attrs",
|
||||
"aiohttp",
|
||||
"aiohttp-socks",
|
||||
"typing;python_version<'3.5'",
|
||||
"matrix-nio @ git+https://github.com/poljar/matrix-nio.git@master#egg=matrix-nio-0"
|
||||
],
|
||||
zip_safe=False
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue