forked from catcombo/jira2markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (42 loc) · 1.08 KB
/
pyproject.toml
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
[tool.poetry]
name = "jira2markdown"
version = "0.3.6"
description = "Convert text from JIRA markup to Markdown using parsing expression grammars"
license = "MIT"
authors = ["Evgeniy Krysanov <evgeniy.krysanov@gmail.com>"]
readme = "README.md"
repository = "https://github.com/catcombo/jira2markdown"
packages = [
{ include = "jira2markdown" },
]
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",
]
[tool.poetry.dependencies]
python = "^3.7"
pyparsing = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
black = "*"
flake8 = "*"
flake8-black = "*"
flake8-coding = "*"
flake8-commas = "*"
flake8-isort = "*"
flake8-quotes = "*"
isort = "*"
[tool.black]
line-length = 120
target-version = ["py37"]
[tool.isort]
profile = "black"
line_length = 120
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"