From 29d81860eea59e75d744de1e5751e8b8b4c159b5 Mon Sep 17 00:00:00 2001 From: Benjamin Dweck Date: Thu, 15 Oct 2020 20:02:22 +0200 Subject: [PATCH] Added setup.py --- requirements.txt | 3 ++- setup.py | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 setup.py diff --git a/requirements.txt b/requirements.txt index 748c26e..08b9abf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -paho-mqtt~=1.5.1 \ No newline at end of file +paho-mqtt~=1.5.1 +setuptools~=50.3.1 \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4f14e1f --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +from setuptools import setup + +setup( + name='torch-subscriber-simple', + version='0.0.1', + packages=['torch_sub', 'torch_sub.test'], + url='http://git.rudefox.io/bj/torch-subscriber-simple', + license='MIT', + author='Benjamin Dweck', + author_email='bjdweck@gmail.com', + description='', + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + ], +)