16 lines
415 B
Python
16 lines
415 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name='torrename',
|
||
|
version='1.0.0',
|
||
|
description='File matcher and rename tool given a .torrent file',
|
||
|
author='Mario Romero',
|
||
|
author_email='mario@1159.cl',
|
||
|
url='https://git.1159.cl/Mario1159/torrename',
|
||
|
packages=find_packages(),
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'torrename = src.main:main',
|
||
|
],
|
||
|
},
|
||
|
)
|