forked from jcsaaddupuy/python-xbmc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 713 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
import version
PACKAGE = 'xbmc-json'
setup(name = PACKAGE, version = version.VERSION,
license = "WTFPL",
description = "Python module for controlling xbmc over HTTP Json API",
author = "Jean-Christophe Saad-Dupuy",
author_email = "saad.dupuy@gmail.com",
url = "https://github.com/jcsaaddupuy/python-xbmc",
py_modules = [ "xbmcjson/xbmcjson" ],
packages = ["xbmcjson"],
install_requires = ["requests"],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
]
)