-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.75 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
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='zdenek.bohm@nic.cz',
name='djangocms-oidc',
version='4.2.0',
description='Plugin OIDC (OpenID Connect) into Django CMS.',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/CZ-NIC/djangocms-oidc',
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',
),
install_requires=(
'django-cms~=3.11',
'mozilla-django-oidc~=3.0',
'django-countries~=7.5',
'django-multiselectfield',
),
extras_require={
'quality': ['isort', 'flake8'],
'test': ['requests_mock', 'freezegun'],
},
packages=find_packages(exclude=['tests']),
cmdclass={"build": CustomBuild},
setup_requires=["Babel >=2.3"],
include_package_data=True,
zip_safe=False
)