summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 1dc392738bf7945b66ddf8557a5a203f07531468 (plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[tool.poetry]
name = "python-creole"
version = "1.5.0.rc0"
description = "python-creole is an open-source (GPL) markup converter in pure Python for: creole2html, html2creole, html2ReSt, html2textile"

# Will be generated from README.creole with: "poetry run update_rst_readme"
readme="README.rst"

license = "GPL-3.0-or-later"
authors = ["Jens Diemer <python-creole@jensdiemer.de>"]
homepage = "https://github.com/jedie/python-creole/"
keywords=["creole", "markup", "creole2html", "html2creole", "rest2html", "html2rest", "html2textile"]
classifiers = [
    # http://pypi.python.org/pypi?%3Aaction=list_classifiers
    "Development Status :: 5 - Production/Stable",
    "Environment :: Web Environment",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: GNU General Public License (GPL)",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: Implementation :: PyPy",
    "Operating System :: OS Independent",
    "Topic :: Documentation",
    "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
    "Topic :: Software Development :: Libraries :: Python Modules",
    "Topic :: Text Processing :: Markup",
    "Topic :: Text Processing :: Markup :: HTML",
    "Topic :: Utilities",
]
packages = [
    { include = "creole" },
]
include = ['AUTHORS', 'LICENSE']

[tool.poetry.dependencies]
python = ">=3.7,<4.0.0"
docutils = "*"

[tool.poetry.dev-dependencies]
readme-renderer = "*"
poetry-publish = "*"
tox = "*"
pygments = "*"
textile = "*"
pytest = "*"
pytest-cov = "*"
isort = "*"
pylint = "*"
autopep8 = "*"
darker = "*"

[tool.poetry.scripts]
creole2html = "creole.cmdline:cli_creole2html"
html2creole = "creole.cmdline:cli_html2creole"
html2rest = "creole.cmdline:cli_html2rest"
html2textile = "creole.cmdline:cli_html2textile"
update_rst_readme = "creole.setup_utils:update_creole_rst_readme"
publish = "creole.publish:publish"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"


[tool.darker]
src = ['.']
revision = "origin/main..."
line_length = 100
verbose = true
skip_string_normalization = true
diff = false
check = false
stdout = false
isort = true
lint = [
    "pylint",
]
log_level = "INFO"


[tool.flynt]
line_length = 100


[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/config_files/#pyprojecttoml-preferred-format
atomic=true
profile='black'
line_length=100
skip_glob=["*/htmlcov/*"]
known_first_party=["creole"]
lines_after_imports=2


[tool.pytest.ini_options]
# https://docs.pytest.org/en/latest/customize.html#pyproject-toml
minversion = "6.0"
norecursedirs = ".* __pycache__ conf coverage* dist htmlcov"
# sometimes helpfull "addopts" arguments:
#    -vv
#    --verbose
#    --capture=no
#    --trace-config
#    --full-trace
#    -p no:warnings
addopts = """
    --cov=.
    --cov-report term-missing
    --cov-report html
    --cov-report xml
    --no-cov-on-fail
    --showlocals
    --doctest-modules
    --failed-first
    --last-failed-no-failures all
    --new-first
"""
# TODO: --mypy


[tool.tox]
# https://tox.readthedocs.io/en/latest/example/basic.html#pyproject-toml-tox-legacy-ini
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py310,py39,py38,py37
skip_missing_interpreters = True

[testenv]
passenv = *
whitelist_externals = make
commands =
    make pytest
"""