forked from alexmohr/sonyapilib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.02 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
# pylint: disable=invalid-name, exec-used
"""Setup sonyapilib package."""
from __future__ import absolute_import
import sys
import os
from setuptools import setup, find_packages
# import subprocess
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.3.11',
description = 'Lib to control sony devices with their soap api',
author = 'Alexander Mohr',
author_email = '[email protected]',
url = 'https://github.com/alexmohr/sonyapilib', # use the URL to the github repo
download_url = 'https://codeload.github.com/alexmohr/sonyapilib/tar.gz/0.3.11',
keywords = ['soap', 'sony', 'api'], # arbitrary keywords
classifiers = [],
install_requires=[
'jsonpickle',
'setuptools',
'requests',
'wakeonlan'
],
)