-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.67 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "md-to-jira"
dynamic = ["version"]
description = "Simple Python utilities for converting from GitHub-flavored Markdown syntax to Atlassian's custom markup syntax, and vice-versa"
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE"}
authors = [
{name = "Elijah Shackelford", email = "eshack94@users.noreply.github.com"}
]
keywords = ["markdown", "jira", "confluence", "atlassian", "converter", "markup"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
]
[project.urls]
Homepage = "https://github.com/eshack94/md-to-jira"
Repository = "https://github.com/eshack94/md-to-jira"
Issues = "https://github.com/eshack94/md-to-jira/issues"
[project.scripts]
md2jira = "md_to_jira.md_to_jira:main"
jira2md = "md_to_jira.jira_to_md:main"
[tool.hatch.build]
sources = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["md_to_jira"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/test_*.py",
"/README.md",
"/LICENSE",
]
[tool.hatch.version]
source = "vcs"