-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (62 loc) · 2.27 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
71
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from __future__ import unicode_literals
from setuptools import setup
import kolibri_sync_extras_plugin
dist_name = "kolibri_sync_extras_plugin"
# Default description of the distributed package
description = """Kolibri plugin that provides extra features for peer-to-peer syncing"""
long_description = """
`Kolibri <https://learningequality.org/kolibri/>`_ is the offline learning platform
from `Learning Equality <https://learningequality.org/>`_.
Kolibri supports syncing facility data between two instances. This plugin provides additional sync
related features that can be turned on to customize the behavior of those syncs.
"""
setup(
name=dist_name,
version=kolibri_sync_extras_plugin.__version__,
description=description,
long_description=long_description,
author="Learning Equality",
author_email="[email protected]",
url="https://github.com/learningequality/kolibri-sync-extras-plugin",
packages=[
str(
"kolibri_sync_extras_plugin"
), # https://github.com/pypa/setuptools/pull/597
],
entry_points={
"kolibri.plugins": "kolibri_sync_extras_plugin = kolibri_sync_extras_plugin",
},
package_dir={"kolibri_sync_extras_plugin": "kolibri_sync_extras_plugin"},
include_package_data=True,
license="MIT",
install_requires=[],
extras_require={
"dev": [
"setuptools",
"wheel",
"twine",
]
},
zip_safe=False,
keywords=["kolibri", "syncing", "morango"],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)