forked from elParaguayo/LMSTools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (24 loc) · 1.01 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
from setuptools import setup
setup(
name = 'LMSTools',
version = '0.1.4',
author = 'elParaguayo, dalgwen',
author_email = '',
url = 'http://github.com/dalgwen/LMSTools',
keywords = 'LMS',
description = 'A python library for iteracting with your Logitech Media Server. FORKED from elParaguayo/LMSTools',
license = 'GNU General Public License (GPL)',
packages = ['LMSTools'],
install_requires = [],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)