-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (38 loc) · 1.08 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
[metadata]
name = edc-vitals
version = attr: _version
author = Erik van Widenfelt
author_email = ew2789@gmail.com
url = https://github.com/clinicedc/edc-vitals
license = GPL license, see LICENSE
description = Classes for BP, weight, etc for clinicedc/edc projects
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = django edc vitals, clinicedc, clinical trials
classifiers=
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 5.1
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python :: 3.12
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
[options]
python_requires = >=3.12
zip_safe = False
include_package_data = True
packages = find:
[options.packages.find]
exclude =
examples*
tools*
docs*
bin*
edc_vitals.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