forked from shawnanastasio/python-matrix-bot-api
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
16 lines (14 loc) · 450 Bytes
/
Copy pathsetup.py
File metadata and controls
16 lines (14 loc) · 450 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fromdistutils.coreimportsetup
DESC='A library for creating bots on the Matrix communication network.'
setup(
name='matrix_bot_api',
version='0.1',
author='Shawn Anastasio',
author_email='see github',
url='https://github.com/shawnanastasio/python-matrix_bot_api',
packages=['matrix_bot_api'],
install_requires=['matrix_client'],
license='GNU GPL v3',
summary=DESC,
long_description=DESC,
)