Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions aiven_fake_data_producer_for_apache_kafka/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from aiven_fake_data_producer_for_apache_kafka import metricadvancedproducer, \
metricproducer, pizzaproducer, realstockproducer, \
stockproducer, userbehaviorproducer, userbets, \
rolling
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

[metadata]
description-file = README.md
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from distutils.core import setup

setup(
name='aiven_fake_data_producer_for_apache_kafka',
packages=['aiven_fake_data_producer_for_apache_kafka'],
version='1.0.0',
license='apache-2.0',
description='The Python fake data producer for Apache Kafka® is a complete demo app allowing you to quickly '
'produce JSON fake streaming datasets and push it to an Apache Kafka topic. ',
author='Open Source @ Aiven',
url='https://github.com/aiven/python-fake-data-producer-for-apache-kafka',

download_url='TBD',
keywords=['kafka', 'faker', 'producer'],
install_requires=[
'yahoo_fin',
'faker',
'kafka-python',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache license 2.0',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)