-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (52 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
62 lines (52 loc) · 1.37 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
# see https://github.com/karlicoss/pymplate for up-to-date reference
[project]
dynamic = ["version"] # version is managed by build backend
name = "orger"
dependencies = [
"platformdirs", # to keep state files
"atomicwrites", # to safely append data to a file
]
requires-python = ">=3.12"
## these need to be set if you're planning to upload to pypi
description = "Converts data into org-mode"
license = {file = "LICENSE"}
authors = [
{name = "Dima Gerasimov (@karlicoss)", email = "karlicoss@gmail.com"},
]
maintainers = [
{name = "Dima Gerasimov (@karlicoss)", email = "karlicoss@gmail.com"},
]
[project.urls]
Homepage = "https://github.com/karlicoss/orger"
##
[project.optional-dependencies]
optional = [
"colorlog",
]
[dependency-groups]
testing = [
"pytest",
"ruff",
]
typecheck = [
{ include-group = "testing" },
"mypy",
"lxml", # for mypy coverage
"ty>=0.0.1a21",
"orger[optional]",
]
typecheck-all = [
{ include-group = "typecheck" },
"HPI",
]
[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/orger"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "python-simplified-semver"
local_scheme = "dirty-tag"