-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.33 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
"""
Setup file for the ecommerce-nau-extensions Open edX ecommerce NAU extensions.
"""
from pathlib import Path
from setuptools import setup
README = open(Path(__file__).parent / 'README.rst').read()
CHANGELOG = open(Path(__file__).parent / 'CHANGELOG.rst').read()
setup(
name='ecommerce-nau-extensions',
description='Ecommerce NAU extensions',
version='0.1.0',
author='FCCN',
author_email='[email protected]',
long_description=f'{README}\n\n{CHANGELOG}',
long_description_content_type='text/x-rst',
url='https://github.com/fccn/ecommerce-nau-extensions',
include_package_data=True,
zip_safe=False,
license="AGPL 3.0",
keywords='Django openedx openedx-plugin ecommerce',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
install_requires=[
'Django~=3.2',
],
packages=[
'nau_extensions',
],
entry_points={
'ecommerce': [
'nau_extensions = nau_extensions.apps:NauExtensionsConfig',
],
},
)