2020-10-15 18:02:22 +00:00
|
|
|
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='',
|
2020-10-16 10:21:32 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['torch-sub=torch_sub.torch_sub:main'],
|
|
|
|
},
|
2020-10-15 18:02:22 +00:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
],
|
|
|
|
)
|