rework completed

This commit is contained in:
2018-10-21 07:27:26 +02:00
parent e63ae46724
commit f5a9421eac
9 changed files with 964 additions and 1 deletions

12
setup.py Normal file
View File

@@ -0,0 +1,12 @@
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 them',
packages = find_packages(),
install_requires = ['pycrypt', 'requests'],
)