Added setup.py

master
B.J. Dweck 2020-10-15 20:02:22 +02:00
parent 53a0b3cbb6
commit 29d81860ee
2 changed files with 18 additions and 1 deletions

View File

@ -1 +1,2 @@
paho-mqtt~=1.5.1
paho-mqtt~=1.5.1
setuptools~=50.3.1

16
setup.py Normal file
View File

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