34 lines
756 B
INI
34 lines
756 B
INI
|
# import setuptools
|
||
|
# import torchsub
|
||
|
#
|
||
|
# setuptools.setup(
|
||
|
# name="torchsub",
|
||
|
# version=torchsub.__version__,
|
||
|
# author='Benjamin Dweck',
|
||
|
# author_email='bjdweck@gmail.com',
|
||
|
# url='http://git.rudefox.io/bj/torch-subscriber-simple',
|
||
|
# packages=setuptools.find_packages(),
|
||
|
# entry_points={
|
||
|
# 'console_scripts': ['torch-sub=torchsub.torch_sub:main'],
|
||
|
# },
|
||
|
# classifiers=[
|
||
|
# "Programming Language :: Python :: 3",
|
||
|
# "License :: OSI Approved :: MIT License",
|
||
|
# ],
|
||
|
# )
|
||
|
|
||
|
[metadata]
|
||
|
name = torchsub
|
||
|
version = 0.0.1
|
||
|
|
||
|
[options]
|
||
|
packages = find:
|
||
|
install_requires =
|
||
|
paho-mqtt~=1.5.1
|
||
|
|
||
|
[options.entry_points]
|
||
|
console_scripts =
|
||
|
torch-sub=torchsub.torch_sub:main
|
||
|
|
||
|
[options.packages.find]
|
||
|
exclude=test
|