forked from endlessm/kolibri-endless-key-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (32 loc) · 1.22 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals
from setuptools import setup
import kolibri_angels4ed_theme # <-- underscore
dist_name = "kolibri-angels4ed-theme" # distribution name (may contain hyphens)
package_name = "kolibri_angels4ed_theme" # python package name (underscores)
repo_url = "https://github.com/judicandus/kolibri-angels4ed-theme"
description = "Angels for Education custom theme for Kolibri"
long_description = (
"A plugin that customizes Kolibri's appearance for Angels for Education. "
"See the Github repo <{repo_url}> for details.".format(repo_url=repo_url)
)
setup(
name=dist_name,
version=kolibri_angels4ed_theme.__version__,
description=description,
long_description=long_description,
author="Angels for Education",
author_email="admin@vickyfoundation.org",
url=repo_url,
packages=[package_name],
package_dir={package_name: package_name},
include_package_data=True,
package_data={package_name: ["static/*"]}, # <-- add this
entry_points={
"kolibri.plugins": "{pkg} = {pkg}".format(pkg=package_name),
},
license="MIT",
zip_safe=False,
keywords="kolibri",
)