forked from alexmohr/sonyapilib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# pylint: disable=invalid-name, exec-used
"""Setup sonyapilib package."""
from __future__ import absolute_import
import os
import sys
from setuptools import setup
sys.path.insert(0, '.')
CURRENT_DIR = os.path.dirname(__file__)
# to deploy to pip, please use
# make pythonpack
# python setup.py register sdist upload
# and be sure to test it firstly using
# "python setup.py register sdist upload -r pypitest"
setup(
name='sonyapilib',
packages=['sonyapilib'], # this must be the same as the name above
version='0.5.0',
description='Lib to control sony devices with their soap api',
author='Alexander Mohr',
author_email='[email protected]',
# use the URL to the github repo
url='https://github.com/alexmohr/sonyapilib',
download_url='https://codeload.github.com/alexmohr/sonyapilib/tar.gz/0.5.0',
keywords=['soap', 'sony', 'api'], # arbitrary keywords
classifiers=[],
setup_requires=[
'wheel'
],
install_requires=[
'jsonpickle',
'setuptools',
'requests',
'wakeonlan'
],
tests_require=[
'pytest>=5.4',
'pytest-pep8',
'pytest-cov',
'pylint',
'coverage==4.5.4'
]
)