-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
45 lines (41 loc) · 1.21 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
[metadata]
name = django-audit-fields
version = attr: _version
author = Erik van Widenfelt
author_email = [email protected]
url = http://github.com/erikvw/django-audit-fields
license = GPL license, see LICENSE
description = Add model fields to track creation and modification dates, users and more on save.
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = django Edc audit field clinicedc, clinical trials
classifiers=
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 4.2
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
[options]
python_requires = >=3.11
zip_safe = False
include_package_data = True
packages = find:
install_requires =
edc-device
[options.packages.find]
exclude =
examples*
tools*
docs*
bin*
django_audit_fields.tests*
[flake8]
ignore = E226,W503,E203
max-line-length = 95
max-complexity = 10
exclude = */migrations/*,.tox,.git,__pycache__,build,dist,.eggs
per-file-ignores = __init__.py: F401