mirror of
https://github.com/KevinMidboe/delugeClient.git
synced 2025-10-29 12:00:13 +00:00
Switched out the cli package to typer. Removed progress command since it did mostly what ls did. Priting Torrents pads output to be a bit more readable. Make sure to disconnect from deluge & ssh before script exits
44 lines
1.0 KiB
Python
44 lines
1.0 KiB
Python
#!/usr/bin/env python3
|
|
# -*- encoding: utf-8 -*-
|
|
from setuptools import setup, find_packages
|
|
from sys import path
|
|
from os.path import dirname
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
exec(open('delugeClient/__version__.py').read())
|
|
|
|
setup(
|
|
name="delugeClient-kevin",
|
|
version=__version__,
|
|
packages=find_packages(),
|
|
package_data={
|
|
'delugeClient': ['default_config.ini'],
|
|
},
|
|
python_requires=">=3.6",
|
|
author="KevinMidboe",
|
|
description="Deluge client with custom functions written in python",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/kevinmidboe/delugeClient",
|
|
install_requires=[
|
|
'colored',
|
|
'deluge-client',
|
|
'requests',
|
|
'sshtunnel',
|
|
'typer',
|
|
'websockets'
|
|
],
|
|
classifiers=[
|
|
'Programming Language :: Python',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python :: 3.6',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'delugeclient = delugeClient.__main__:main',
|
|
],
|
|
}
|
|
)
|