-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
71 lines (63 loc) · 1.8 KB
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
[project]
name = "jira2markdown"
version = "0.5"
description = "Convert text from JIRA markup to Markdown using parsing expression grammars"
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.9,<4.0"
authors = [
{ name = "Evgeniy Krysanov", email = "evgeniy.krysanov@gmail.com" },
]
maintainers = [
{ name = "Evgeniy Krysanov", email = "evgeniy.krysanov@gmail.com" },
]
keywords = ["jira", "markdown"]
classifiers = [
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: Markdown",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pyparsing>=3",
]
[project.urls]
repository = "https://github.com/catcombo/jira2markdown"
[project.scripts]
jira2markdown = "jira2markdown.cli:main"
[tool.poetry]
packages = [
{ include = "jira2markdown" },
]
[tool.poetry.group.dev.dependencies]
pytest = "*"
ruff = "*"
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = [
"C4", # flake8-comprehensions
"COM", # flake8-commas
"DJ001", # flake8-django: Avoid using null=True on string-based fields such as
"DJ012", # flake8-django: Order of model's inner classes, methods, and fields
"DTZ", # flake8-datetimez
"E", # Error
"F", # Pyflakes
"I", # isort
"PTH", # flake8-use-pathlib
"RSE", # flake8-raise
"Q", # flake8-quotes
"UP009", # pyupgrade: UTF-8 encoding declaration is unnecessary
"W" # Warning
]
ignore = []
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"