Init
This commit is contained in:
commit
7422250c21
5 changed files with 237 additions and 0 deletions
54
setup.py
Normal file
54
setup.py
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import sys
|
||||
from io import open
|
||||
import os.path as osp
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
HERE = osp.abspath(osp.dirname(__file__))
|
||||
sys.path.insert(0, HERE)
|
||||
import pibooth_telegram_upload as plugin # nopep8 : import shall be done after adding setup to paths
|
||||
|
||||
|
||||
def main():
|
||||
setup(
|
||||
name=plugin.__name__,
|
||||
version=plugin.__version__,
|
||||
description=plugin.__doc__,
|
||||
long_description=open(osp.join(HERE, "README.md"), encoding="utf-8").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
classifiers=[
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Environment :: Other Environment",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: End Users/Desktop",
|
||||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Natural Language :: English",
|
||||
"Topic :: Multimedia :: Graphics :: Capture :: Digital Camera",
|
||||
],
|
||||
author="Dídac Sabatés",
|
||||
author_email="sabatesduran@gmail.com",
|
||||
url="https://github.com/sabatesduran/pibooth-telegram-upload",
|
||||
download_url="https://github.com/sabatesduran/pibooth-telegram-upload/archive/{}.tar.gz".format(
|
||||
plugin.__version__
|
||||
),
|
||||
license="GPLv3",
|
||||
platforms=["unix", "linux"],
|
||||
keywords=["Raspberry Pi", "camera", "photobooth", "telegram", "chat", "bot", "channel"],
|
||||
py_modules=["pibooth_telegram_upload"],
|
||||
python_requires=">=3.6",
|
||||
install_requires=["pibooth>=2.0.0", "python-telegram-bot==13.12"],
|
||||
zip_safe=False, # Don't install the lib as an .egg zipfile
|
||||
entry_points={"pibooth": ["pibooth_telegram_upload = pibooth_telegram_upload"]},
|
||||
)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue