17 lines
430 B
Python
17 lines
430 B
Python
|
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",
|
||
|
],
|
||
|
)
|