-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.41 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
[project]
dynamic = ["version"] # version is managed by build backend
name = "orgparse"
dependencies = [
]
requires-python = ">=3.9"
description = "orgparse - Emacs org-mode parser in Python"
license = {file = "LICENSE"}
authors = [
{name = "Takafumi Arakaki (@tkf)", email = "aka.tkf@gmail.com"},
{name = "Dmitrii Gerasimov (@karlicoss)", email = "karlicoss@gmail.com"},
]
maintainers = [
{name = "Dmitrii Gerasimov (@karlicoss)", email = "karlicoss@gmail.com"},
]
keywords = ["org", "org-mode", "emacs"]
# see: http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Topic :: Text Processing :: Markup",
]
# TODO add it back later, perhaps via ast?
# long_description=orgparse.__doc__,
[project.urls]
Homepage = "https://github.com/karlicoss/orgparse"
[project.optional-dependencies]
[dependency-groups]
testing = [
"pytest",
"ruff",
"mypy",
"lxml", # for mypy html coverage
"ty>=0.0.1a25",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
# unfortunately have to duplicate project name here atm, see https://github.com/pypa/hatch/issues/1894
[tool.hatch.build.targets.wheel]
packages = ["src/orgparse"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "python-simplified-semver"
local_scheme = "dirty-tag"