-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
70 lines (53 loc) · 1.68 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
'''
xbmcswift2
~~~~~~~~~~
A micro framework to enable rapid development of XBMC plugins.
Features
````````
* Run the addon from the command line *or* within XBMC without changing any
code.
* Helper libraries to make common XBMC api operations easy, like adding items,
getting settings, creating temporary files, etc.
* Handles all the url parsing involved in plugin routing. No need to deal with
complicated URLs and query strings.
Documentation
`````````````
The current documentation can be found at http://www.xbmcswift.com
Development
```````````
This module is now available in the official XBMC Eden repository as
xbmcswift2.
This project is the next version of xbmcswift. While the APIs are similar,
there are a few things that are not backwards compatible with the original
version, hence the new name.
Contact
```````
https://github.com/jbeluch/xbmcswift2
'''
import os
from setuptools import setup, find_packages
setup(
name = 'xbmcswift2',
version = '0.3.0',
author = 'Jonathan Beluch',
author_email = '[email protected]',
description = 'A micro framework for rapid development of XBMC plugins.',
license = "GPL3",
keywords = "example documentation tutorial",
url = 'https://github.com/jbeluch/xbmcswift2',
packages=find_packages(),
include_package_data=True,
long_description=__doc__,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python',
],
entry_points={
'console_scripts': [
'xbmcswift2 = xbmcswift2.cli.cli:main',
]
},
)