-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (40 loc) · 1.42 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
"""
Setup file for mobile_api_extensions Django plugin.
"""
from __future__ import print_function
from setuptools import setup
from utils import get_version, load_requirements
with open("README.rst", "r") as fh:
README = fh.read()
VERSION = get_version('mobile_api_extensions', '__init__.py')
APP_NAME = "mobile_api_extensions = mobile_api_extensions.apps:MobileApiExtensionsConfig"
setup(
name='mobile_api_extensions',
version=VERSION,
author='Raccoon Gang',
author_email='[email protected]',
description=' Mobile API extensions',
license='AGPL',
long_description=README,
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.8',
],
packages=[
'mobile_api_extensions',
],
include_package_data=True,
install_requires=load_requirements('requirements/base.in'),
zip_safe=False,
entry_points={"lms.djangoapp": [APP_NAME]},
)