Files
synology-api-python/setup.py
Quentame 2827c6f046 Back is black (#17)
* Format with black
2020-03-26 00:37:28 +01:00

45 lines
1.6 KiB
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).
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="python-synology",
version="0.4.0",
url="https://github.com/StaticCube/python-synology/",
download_url="https://github.com/StaticCube/python-synology/tarball/0.4.0",
description="Python API for communication with Synology DSM",
long_description=long_description,
author="FG van Zeelst (StaticCube)",
author_email="GitHub@StaticCube.com",
packages=["SynologyDSM"], # this must be the same as the name above
install_requires=["requests>=1.0.0"],
python_requires=">=2.7.0",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords=["synology-dsm", "synology"],
)