All checks were successful
continuous-integration/drone/push Build is passing
29 lines
653 B
Python
29 lines
653 B
Python
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(),
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'infomentor=infomentor:main',
|
|
],
|
|
},
|
|
install_requires=[
|
|
"pycrypto",
|
|
"request",
|
|
"sqlalchemy",
|
|
"dateparser",
|
|
"python-pushover",
|
|
"flask",
|
|
"flask-bootstrap",
|
|
"caldav",
|
|
"bs4",
|
|
"icalendar",
|
|
],
|
|
)
|