Add requirements.txt and update README a bit

This commit is contained in:
Sijmen Schoon 2016-11-14 11:06:16 +01:00
parent 0f39b8881c
commit 186cad8931
2 changed files with 22 additions and 0 deletions

View File

@ -2,6 +2,25 @@
A bridge between Telegram and [Matrix](http://matrix.org/). Currently under development - this project isn't considered to be in a usable state right now.
## Installation
### Dependencies
First, create a virtualenv and activate it:
```bash
virtualenv venv -p $(which python3)
. venv/bin/activate
```
Then install the requirements using pip:
```bash
pip install -r requirements.txt
```
### Configuration
TODO
## Contributions
Want to help? Awesome! This bridge still needs a lot of work, so any help is welcome.

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
aiohttp
aiotg
beautifulsoup4