mirror of
https://github.com/ProtoThis/python-synology.git
synced 2025-08-04 22:00:30 +00:00
25 lines
887 B
Python
25 lines
887 B
Python
#!/usr/bin/env python
|
|
# -*- coding:utf-8 -*-
|
|
|
|
# NOTE(StaticCube) Guidelines for Major.Minor.Micro
|
|
# - Major means an API contract change
|
|
# - Minor means API bugfix or new functionality
|
|
# - Micro means change of any kind (unless significant enough for a minor/major).
|
|
|
|
import io
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name = 'python-synology',
|
|
packages = ['python-synology'], # this must be the same as the name above
|
|
version = '0.0.1',
|
|
description = 'Python API for communication with Synology DSM',
|
|
author = 'FG van Zeelst (StaticCube)',
|
|
author_email = 'GitHub@StaticCube.com',
|
|
url = 'https://github.com/StaticCube/python-synology/',
|
|
download_url = 'https://github.com/StaticCube/python-synology/tarball/0.0.1', # I'll explain this in a second
|
|
keywords = ['synology-dsm', 'synology'],
|
|
classifiers = [],
|
|
install_requires=['requests>=1.0.0']
|
|
)
|