-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (46 loc) · 1.73 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
from distutils.command.build import build
from setuptools import find_packages, setup
class CustomBuild(build):
sub_commands = [("compile_catalog", lambda x: True)] + build.sub_commands
setup(
author='Zdeněk Böhm',
author_email='[email protected]',
name='djangocms-oidc-form-fields',
version='3.0.1',
description='Plugin OIDC (OpenID Connect) for Aldryn form fields.',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/CZ-NIC/djangocms-oidc-form-fields',
license='GPL GNU License',
platforms=['OS Independent'],
classifiers=(
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django CMS :: 3.11',
),
python_requires='>=3.9',
install_requires=(
'django-cms~=3.11',
'djangocms-aldryn-forms~=7.0',
'djangocms-oidc~=4.0',
),
extras_require={
'quality': ['isort', 'flake8'],
},
packages=find_packages(exclude=['tests']),
cmdclass={"build": CustomBuild},
setup_requires=["Babel >=2.3"],
include_package_data=True,
zip_safe=False
)