forked from botswana-harvard/edc-lab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
43 lines (40 loc) · 1.11 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
[metadata]
name = edc-lab
version = attr: _version
author = Erik van Widenfelt
author_email = ew2789@gmail.com
url = https://github.com/clinicedc/edc-lab
license = GPL license, see LICENSE
description = LIMS/lab classes for clinicedc/edc projects
long_description = file: README.rst
long_description_content_type = text/x-rst
keywords = django, edc, lab classes, 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:
install_requires=
pycups
[options.packages.find]
exclude =
examples*
tools*
docs*
bin*
edc_lab.tests*
[flake8]
ignore = E226,W503,E203,E701,E704,W605
max-line-length = 95
max-complexity = 10
exclude = */migrations/*,.tox,.git,__pycache__,build,dist,.eggs
per-file-ignores = __init__.py: F401