mirror of
https://github.com/thavel/synolopy.git
synced 2026-01-12 15:39:13 +00:00
16 lines
281 B
Python
16 lines
281 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='synolopy',
|
|
version='0.1.2',
|
|
description='Synology Python API',
|
|
author='Thibaut Havel',
|
|
packages=find_packages(),
|
|
requires=[
|
|
'requests'
|
|
],
|
|
)
|