Files
synology-api-python/setup.py
Ferry van Zeelst 56050dd903 Fixed setup.py
2016-10-14 20:16:18 +00:00

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']
)