-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
44 lines (40 loc) · 1.12 KB
/
setup.cfg
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
[metadata]
name = django-wm
version = attr: mentions.__version__
author = Michael Beaton
author_email = [email protected]
description = Webmention support for Django.
license = GPLv3
long_description = file: README.md
long_description_content_type = text/markdown
url = https://beatonma.org/webmentions_tester/
project_urls =
Source = https://github.com/beatonma/django-wm
classifiers =
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
packages = find:
python_requires = >= 3.7
install_requires =
beautifulsoup4 >= 4.6
Django >= 2.2
mf2py >= 1.1
requests >= 2.20
[options.package_data]
mentions = templates/mentions/*.html
[options.packages.find]
exclude = tests*
[options.extras_require]
celery = celery >= 5.2.2
test =
pytest
pytest-django
wagtail = wagtail >= 3.0.3