torrename/setup.py

16 lines
415 B
Python
Raw Normal View History

2023-04-06 03:29:32 +00:00
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',
],
},
)