forked from jcarbaugh/python-roku
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 865 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 865 Bytes
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
from setuptools import setup, find_packages
import os
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
readme = f.read()
f.close()
setup(
name='roku',
version='2.0',
description='Client for the Roku media player',
long_description=readme,
author='Jeremy Carbaugh',
author_email='jcarbaugh@gmail.com',
url='https://github.com/jcarbaugh/python-roku',
packages=find_packages(),
install_requires=[
'lxml>=3.6,<3.7',
'requests>=2.10,<2.11',
'six'
],
license='BSD License',
platforms=["any"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)