-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
32 lines (29 loc) · 997 Bytes
/
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
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
setup(
name='py-sony-bravia-remote',
version='1.1',
packages=find_packages(),
include_package_data=True,
license='MIT License',
description='Library for remotely interfacing with Sony Bravia TV\'s.',
long_description=README,
url='https://github.com/Photonios/py-sony-bravia-remote',
author='Swen Kooij',
author_email='swenkooij@gmail.com',
keywords=['sony', 'bravia', 'remote'],
install_requires=[
'requests==2.12.4'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
)