File: setup.cfg

package info (click to toggle)
python-ewoksutils 0.1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 220 kB
  • sloc: python: 622; makefile: 2
file content (63 lines) | stat: -rw-r--r-- 1,396 bytes parent folder | download
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
[metadata]
name = ewoksutils
version = attr: ewoksutils.__version__
author = ESRF
author_email = wout.de_nolf@esrf.fr
description = Utilities for ewoks developers
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
url = https://gitlab.esrf.fr/workflow/ewoks/ewoksutils/
project_urls = 
    Source = https://gitlab.esrf.fr/workflow/ewoks/ewoksutils/
    Documentation = https://ewoksutils.readthedocs.io/
    Tracker = https://gitlab.esrf.fr/workflow/ewoks/ewoksutils/issues/
classifiers = 
    Intended Audience :: Science/Research
    License :: OSI Approved :: MIT License
    Programming Language :: Python :: 3

[options]
package_dir=
	=src
packages=find:
python_requires = >=3.6

[options.packages.find]
where=src

[options.extras_require]
test =
    pytest >=7
dev =
    %(test)s
    black >=22
    flake8 >=4
doc =
    %(test)s
    sphinx >=4.5
    sphinx-autodoc-typehints >=1.16

# E501 (line too long) ignored for now
# E203 and W503 incompatible with black formatting (https://black.readthedocs.io/en/stable/compatible_configs.html#flake8)
[flake8]
ignore = E501, E203, W503
max-line-length = 88
exclude = 
    .eggs

[build_sphinx]
project = ewoksutils
version = attr: ewoksutils.__version__
source-dir = ./doc

[coverage:run]
omit =
    setup.py
    */tests/*

[mypy]
python_version = 3.7

[mypy-setuptools.*]
ignore_missing_imports = True