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", + ], +)