├── .coveragerc ├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── quickstart.rst ├── reference │ └── settings.rst ├── releases.rst └── topics │ ├── akismet.rst │ ├── captcha.rst │ ├── email.rst │ ├── form_layout.rst │ ├── gdpr.rst │ ├── ipaddress.rst │ ├── moderate.rst │ ├── templates.rst │ └── threaded_comments.rst ├── example ├── __init__.py ├── article │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── factories.py │ │ ├── test_admin.py │ │ ├── test_forms.py │ │ ├── test_moderation.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── frontend │ ├── __init__.py │ ├── static │ │ └── vendor │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.scss │ │ │ └── jquery-2.2.0.min.js │ └── templates │ │ ├── article │ │ ├── details.html │ │ ├── list.html │ │ └── list_full.html │ │ ├── base.html │ │ └── comments │ │ └── base.html ├── manage.py ├── requirements.txt ├── settings.py └── urls.py ├── fluent_comments ├── __init__.py ├── admin.py ├── akismet.py ├── apps.py ├── appsettings.py ├── email.py ├── forms │ ├── __init__.py │ ├── _captcha.py │ ├── base.py │ ├── captcha.py │ ├── compact.py │ ├── default.py │ ├── helper.py │ └── recaptcha.py ├── locale │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zh │ │ └── LC_MESSAGES │ │ └── django.po ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── moderation.py ├── receivers.py ├── static │ └── fluent_comments │ │ ├── css │ │ └── ajaxcomments.css │ │ ├── img │ │ └── ajax-wait.gif │ │ └── js │ │ └── ajaxcomments.js ├── templates │ ├── comments │ │ ├── comment.html │ │ ├── comment_notification_email.html │ │ ├── comment_notification_email.txt │ │ ├── deleted.html │ │ ├── flagged.html │ │ ├── form.html │ │ ├── list.html │ │ ├── posted.html │ │ └── preview.html │ └── fluent_comments │ │ └── templatetags │ │ ├── ajax_comment_tags.html │ │ ├── flat_list.html │ │ └── threaded_list.html ├── templatetags │ ├── __init__.py │ └── fluent_comments_tags.py ├── tests │ ├── __init__.py │ ├── test_utils.py │ └── utils.py ├── urls.py ├── utils.py └── views.py ├── pyproject.toml ├── runtests.sh ├── setup.cfg ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | include = fluent_comments* 3 | -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-pro 2 | repo_token: NYefOmqPlep2cS55RbgiFrLekn2y6JYpW 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/reference/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/reference/settings.rst -------------------------------------------------------------------------------- /docs/releases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/releases.rst -------------------------------------------------------------------------------- /docs/topics/akismet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/topics/akismet.rst -------------------------------------------------------------------------------- /docs/topics/captcha.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/topics/captcha.rst -------------------------------------------------------------------------------- /docs/topics/email.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/topics/email.rst -------------------------------------------------------------------------------- /docs/topics/form_layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/topics/form_layout.rst -------------------------------------------------------------------------------- /docs/topics/gdpr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/topics/gdpr.rst -------------------------------------------------------------------------------- /docs/topics/ipaddress.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/topics/ipaddress.rst -------------------------------------------------------------------------------- /docs/topics/moderate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/topics/moderate.rst -------------------------------------------------------------------------------- /docs/topics/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/topics/templates.rst -------------------------------------------------------------------------------- /docs/topics/threaded_comments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/docs/topics/threaded_comments.rst -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/article/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/article/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/admin.py -------------------------------------------------------------------------------- /example/article/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/article/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/article/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/models.py -------------------------------------------------------------------------------- /example/article/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/article/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/tests/factories.py -------------------------------------------------------------------------------- /example/article/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/tests/test_admin.py -------------------------------------------------------------------------------- /example/article/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/tests/test_forms.py -------------------------------------------------------------------------------- /example/article/tests/test_moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/tests/test_moderation.py -------------------------------------------------------------------------------- /example/article/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/tests/test_views.py -------------------------------------------------------------------------------- /example/article/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/urls.py -------------------------------------------------------------------------------- /example/article/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/article/views.py -------------------------------------------------------------------------------- /example/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/frontend/static/vendor/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/frontend/static/vendor/bootstrap.css -------------------------------------------------------------------------------- /example/frontend/static/vendor/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/frontend/static/vendor/bootstrap.scss -------------------------------------------------------------------------------- /example/frontend/static/vendor/jquery-2.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/frontend/static/vendor/jquery-2.2.0.min.js -------------------------------------------------------------------------------- /example/frontend/templates/article/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/frontend/templates/article/details.html -------------------------------------------------------------------------------- /example/frontend/templates/article/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/frontend/templates/article/list.html -------------------------------------------------------------------------------- /example/frontend/templates/article/list_full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/frontend/templates/article/list_full.html -------------------------------------------------------------------------------- /example/frontend/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/frontend/templates/base.html -------------------------------------------------------------------------------- /example/frontend/templates/comments/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/frontend/templates/comments/base.html -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/requirements.txt -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/example/urls.py -------------------------------------------------------------------------------- /fluent_comments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/__init__.py -------------------------------------------------------------------------------- /fluent_comments/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/admin.py -------------------------------------------------------------------------------- /fluent_comments/akismet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/akismet.py -------------------------------------------------------------------------------- /fluent_comments/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/apps.py -------------------------------------------------------------------------------- /fluent_comments/appsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/appsettings.py -------------------------------------------------------------------------------- /fluent_comments/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/email.py -------------------------------------------------------------------------------- /fluent_comments/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/forms/__init__.py -------------------------------------------------------------------------------- /fluent_comments/forms/_captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/forms/_captcha.py -------------------------------------------------------------------------------- /fluent_comments/forms/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/forms/base.py -------------------------------------------------------------------------------- /fluent_comments/forms/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/forms/captcha.py -------------------------------------------------------------------------------- /fluent_comments/forms/compact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/forms/compact.py -------------------------------------------------------------------------------- /fluent_comments/forms/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/forms/default.py -------------------------------------------------------------------------------- /fluent_comments/forms/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/forms/helper.py -------------------------------------------------------------------------------- /fluent_comments/forms/recaptcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/forms/recaptcha.py -------------------------------------------------------------------------------- /fluent_comments/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /fluent_comments/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /fluent_comments/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /fluent_comments/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /fluent_comments/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/migrations/0001_initial.py -------------------------------------------------------------------------------- /fluent_comments/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_comments/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/models.py -------------------------------------------------------------------------------- /fluent_comments/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/moderation.py -------------------------------------------------------------------------------- /fluent_comments/receivers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/receivers.py -------------------------------------------------------------------------------- /fluent_comments/static/fluent_comments/css/ajaxcomments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/static/fluent_comments/css/ajaxcomments.css -------------------------------------------------------------------------------- /fluent_comments/static/fluent_comments/img/ajax-wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/static/fluent_comments/img/ajax-wait.gif -------------------------------------------------------------------------------- /fluent_comments/static/fluent_comments/js/ajaxcomments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/static/fluent_comments/js/ajaxcomments.js -------------------------------------------------------------------------------- /fluent_comments/templates/comments/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/comments/comment.html -------------------------------------------------------------------------------- /fluent_comments/templates/comments/comment_notification_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/comments/comment_notification_email.html -------------------------------------------------------------------------------- /fluent_comments/templates/comments/comment_notification_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/comments/comment_notification_email.txt -------------------------------------------------------------------------------- /fluent_comments/templates/comments/deleted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/comments/deleted.html -------------------------------------------------------------------------------- /fluent_comments/templates/comments/flagged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/comments/flagged.html -------------------------------------------------------------------------------- /fluent_comments/templates/comments/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/comments/form.html -------------------------------------------------------------------------------- /fluent_comments/templates/comments/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/comments/list.html -------------------------------------------------------------------------------- /fluent_comments/templates/comments/posted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/comments/posted.html -------------------------------------------------------------------------------- /fluent_comments/templates/comments/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/comments/preview.html -------------------------------------------------------------------------------- /fluent_comments/templates/fluent_comments/templatetags/ajax_comment_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/fluent_comments/templatetags/ajax_comment_tags.html -------------------------------------------------------------------------------- /fluent_comments/templates/fluent_comments/templatetags/flat_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/fluent_comments/templatetags/flat_list.html -------------------------------------------------------------------------------- /fluent_comments/templates/fluent_comments/templatetags/threaded_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templates/fluent_comments/templatetags/threaded_list.html -------------------------------------------------------------------------------- /fluent_comments/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_comments/templatetags/fluent_comments_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/templatetags/fluent_comments_tags.py -------------------------------------------------------------------------------- /fluent_comments/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_comments/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/tests/test_utils.py -------------------------------------------------------------------------------- /fluent_comments/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/tests/utils.py -------------------------------------------------------------------------------- /fluent_comments/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/urls.py -------------------------------------------------------------------------------- /fluent_comments/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/utils.py -------------------------------------------------------------------------------- /fluent_comments/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/fluent_comments/views.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/runtests.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | # create "py2.py3-none-any.whl" package 3 | universal = 1 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-comments/HEAD/tox.ini --------------------------------------------------------------------------------