forked from afrase/kodiswift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (55 loc) · 1.62 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
"""
kodiswift
---------
A micro framework to enable rapid development of Kodi plugins.
Features
````````
* Run the addon from the command line *or* within Kodi without changing any
code.
* Helper libraries to make common Kodi 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 still needs updated
Development
```````````
This project is a fork of xbmcswift2.
Contact
```````
https://github.com/Sinap/kodiswift
"""
from setuptools import setup, find_packages
setup(
name='kodiswift',
version='0.0.8',
author='Aaron Frase',
author_email='[email protected]',
description='A micro framework for rapid development of Kodi plugins.',
license='GPL3',
keywords='example documentation tutorial',
url='https://github.com/Sinap/kodiswift',
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
long_description=__doc__,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
entry_points={
'console_scripts': [
'kodiswift = kodiswift.cli.cli:main',
]
},
tests_require=[
'nose',
'mock',
],
)