-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
48 lines (45 loc) · 1.28 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
[metadata]
name = effect-edc
version = attr: _version
author = Erik van Widenfelt
author_email = ew2789@gmail.com
url = https://github.com/effect-trial/effect-edc
license = GPL license, see LICENSE
description = EFFECT Trial EDC (https://www.isrctn.com/ISRCTN30579828)
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = django edc EFFECT EDC, 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
Programming Language :: Python :: 3.13
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
[options]
python_requires = >=3.12
zip_safe = False
include_package_data = True
packages = find:
install_requires =
edc==0.6.19
edc-csf==0.3.6
edc-microbiology==0.3.10
beautifulsoup4
effect-form-validators==0.1.44
[options.packages.find]
exclude =
examples*
tools*
docs*
bin*
effect_edc.tests*
[flake8]
ignore = E226,W503,E203
max-line-length = 95
max-complexity = 10
exclude = */migrations/*,.tox,.git,__pycache__,build,dist,.eggs,_version.py
per-file-ignores = __init__.py: F401