forked from jinglemansweep/PyLMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 954 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
#!/usr/bin/env python
import os
from distutils.core import setup
setup(
name="pylms",
version="1.0",
description="PyLMS (Python Logitech Media Server API Library)",
author="JingleManSweep",
author_email="[email protected]",
url="https://github.com/jingleman/PyLMS",
packages = ["pylms"],
scripts = [os.path.join("bin", "pylms"),],
long_description="""Python Wrapper Library for Logitech Media Server CLI (Telnet) Interface""",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3"
]
)