-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
70 lines (62 loc) · 1.24 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
58
59
60
61
62
63
64
65
66
67
68
69
70
[metadata]
name = easydmp
version = attr: easydmp.__version__
description = Easy web based Data Management Plan generator
long_description = file: README.rst
license = MIT License
url = https://github.com/hmpf/easydmp
author = Hanne Moa
author_email = [email protected]
classifiers =
Framework :: Django
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
zip_safe = False
include_package_data = True
packages = find:
package_dir =
= src
python_requires = >=3.8
setup_requires =
setuptools>=30.3
wheel>=0.31
install_requires =
setuptools>=30.3
wheel>=0.31
[options.package_data]
* = *.rst
[options.packages.find]
exclude = tests
where = ./src/
[coverage:report]
skip_empty = True
[flake8]
max-line-length = 88
filename =
src/*
exclude =
.*
*.csv
*.json
*.py?
*.tsv
build
dist
docs
migrations
__pycache__
__pycache__,
src/easydmp/theme
static
templates
[mypy]
ignore_missing_imports = True
[mypy-*/migrations/*]
# Auto-generated
ignore_errors = True
[mypy-*/settings/*]
# Settings are a mess, cause by being python, not text
ignore_errors = True