ca4f0ab6ee
-setup.py -requirements.txt
13 lines
317 B
Python
13 lines
317 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='MailDispatcher',
|
|
version='0.0.1',
|
|
packages=[''],
|
|
url='',
|
|
license='GNU GPL v3.0',
|
|
author='Lars Bogner',
|
|
author_email='lars.bogner@outlook.de',
|
|
description='Receives new E-Mails and distributes them to Subprogramms acording to their Subject'
|
|
)
|