2016-05-08 16:46:24 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
2017-07-21 06:56:44 +00:00
|
|
|
VERSION = '0.1.7'
|
2016-05-08 16:46:24 +00:00
|
|
|
|
|
|
|
setup(name='jabbergram',
|
|
|
|
version=VERSION,
|
|
|
|
description='XMPP/Jabber - Telegram Gateway.',
|
|
|
|
long_description=open('README.rst', encoding='utf-8').read(),
|
|
|
|
author='drymer',
|
|
|
|
author_email='drymer@autistici.org',
|
2017-07-08 17:51:07 +00:00
|
|
|
url='http://git.daemons.it/drymer/jabbergram/about/',
|
|
|
|
download_url='https://git.daemons.it/drymer/jabbergram/archive/' + VERSION + '.tar.gz',
|
2016-05-08 16:46:24 +00:00
|
|
|
scripts=['jabbergram.py'],
|
|
|
|
license="GPLv3",
|
|
|
|
install_requires=[
|
2017-09-01 04:20:47 +00:00
|
|
|
"sleekxmpp>=1.3.2",
|
|
|
|
"python-telegram-bot>=6.1.0",
|
2016-10-13 20:11:57 +00:00
|
|
|
"requests>=2.11.1",
|
2016-05-08 16:46:24 +00:00
|
|
|
],
|
|
|
|
classifiers=["Development Status :: 4 - Beta",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.4",
|
|
|
|
"Programming Language :: Python :: 3.5",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Intended Audience :: End Users/Desktop"]
|
|
|
|
)
|