mirror of
https://github.com/N4S4/synology-api.git
synced 2025-07-24 10:00:37 +00:00
15 lines
403 B
Python
15 lines
403 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='synology-api',
|
|
version='0.0.1',
|
|
packages=find_packages(exclude=['tests*']),
|
|
license='MIT',
|
|
description='Python Synology API Wrapper',
|
|
long_description=open('README.md').read(),
|
|
install_requires=['requests'],
|
|
url='https://github.com/N4S4/synology-api',
|
|
author='Renato Visaggio',
|
|
author_email='renatovisaggio@gmail.com'
|
|
)
|