mirror of
https://github.com/thavel/synolopy.git
synced 2026-01-27 05:54:49 +00:00
15 lines
275 B
Python
15 lines
275 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='synolopy',
|
|
version='0.1.0',
|
|
description='Synology Python API',
|
|
author='T. Havel',
|
|
packages=find_packages(),
|
|
requires=[
|
|
'requests'
|
|
],
|
|
) |