-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
57 lines (53 loc) · 1.49 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
45
46
47
48
49
50
51
52
53
54
55
56
57
[metadata]
name = actnow
version = file: VERSION.txt
url = https://github.com/CodeForAfrica/actNow
project_urls =
Source = https://github.com/CodeForAfrica/actNow
author = Code for Africa
author_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Framework :: Django
Framework :: Django :: 3.2
Framework :: Flake8
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
license = BSD 3-Clause License
license_file = LICENSE
description = A public engagement toolkit that enables a media house or civil society organisation to easily set up channels for engagement.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = actnow
[options]
setup_requires = setuptools_scm
install_requires =
Django==3.2
django-filter==24.3
djangorestframework==3.15.2
environs[django]==11.0.0
greenlet==3.0.3
gunicorn[gevent,setproctitle]==22.0.0
markdown==3.7
python_requires = >=3.8, <4
packages = find:
[options.extras_require]
sentry =
sentry-sdk==2.13.0
dev =
black==24.8.0
build==1.2.1
flake8==5.0.4
isort==5.13.2
mypy==1.11.1
mypy-extensions==1.0.0
pre-commit==3.5.0
psycopg2-binary==2.9.9
setuptools==74.0.0
wheel==0.44.0
[flake8]
max-line-length = 88
extend-ignore = E203, W503