mirror of
https://github.com/nikdoof/smsbot.git
synced 2025-12-13 10:02:15 +00:00
37 lines
759 B
INI
37 lines
759 B
INI
[metadata]
|
|
name = smsbot
|
|
version = 0.0.3
|
|
description = A simple Telegram bot to receive SMS messages.
|
|
long_description = file: README.md, LICENSE
|
|
license = MIT
|
|
license_file = LICENSE
|
|
classifiers =
|
|
Framework :: Flask
|
|
License :: OSI Approved :: MIT License
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.9
|
|
|
|
[options]
|
|
zip_safe = False
|
|
include_package_data = True
|
|
packages = smsbot
|
|
install_requires =
|
|
flask
|
|
waitress
|
|
twilio
|
|
python-telegram-bot
|
|
prometheus_client
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
smsbot = smsbot.cli:main
|
|
|
|
[flake8]
|
|
format = wemake
|
|
ignore = D,E501,WPS432,WPS323,WPS2,S104,WPS412,WPS100
|
|
max-line-length = 120
|
|
exclude = setup.py,env,build
|
|
|
|
[darglint]
|
|
docstring_style=sphinx
|