-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup, Command
def readme():
with open('README.md') as readme_file:
return readme_file.read()
setup(
name='samsungtv',
version='1.0.0',
description='Samsung Smart TV API wrapper',
long_description=readme(),
long_description_content_type='text/markdown',
author='Victor Rachieru',
python_requires='>=3.0.0',
url='https://github.com/vrachieru/samsung-tv-api',
packages=find_packages(exclude=('tests',)),
install_requires=['websocket-client'],
include_package_data=True,
license='MIT',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License'
]
)