update format using black

This commit is contained in:
2019-05-08 05:06:37 +02:00
parent ad9eb25df0
commit 693711abc1
12 changed files with 488 additions and 408 deletions

View File

@@ -1,12 +1,23 @@
from setuptools import setup, find_packages
setup(
name = 'infomentor',
version = '1.0.0',
url = 'https://github.com/mypackage.git',
author = 'Matthias Bilger',
author_email = 'matthias@bilger.info',
description = 'grab infomentor news and push or mail them',
packages = find_packages(),
install_requires = ['pycrypto', 'request', 'sqlalchemy', 'dateparser', 'python-pushover', 'flask', 'flask-bootstrap', 'caldav', 'bs4', 'icalendar' ],
name="infomentor",
version="1.0.0",
url="https://github.com/mypackage.git",
author="Matthias Bilger",
author_email="matthias@bilger.info",
description="grab infomentor news and push or mail them",
packages=find_packages(),
install_requires=[
"pycrypto",
"request",
"sqlalchemy",
"dateparser",
"python-pushover",
"flask",
"flask-bootstrap",
"caldav",
"bs4",
"icalendar",
],
)