-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
44 lines (37 loc) · 1.01 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
# see https://github.com/karlicoss/pymplate for up-to-date reference
[project]
dynamic = ["version"] # version is managed by setuptools_scm
name = "orger"
dependencies = [
"platformdirs", # to keep state files
"atomicwrites", # to safely append data to a file
]
requires-python = ">= 3.9"
## 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 = "[email protected]"},
]
maintainers = [
{name = "Dima Gerasimov (@karlicoss)", email = "[email protected]"},
]
[project.urls]
Homepage = "https://github.com/karlicoss/orger"
##
[project.optional-dependencies]
optional = [
"colorlog",
]
testing = [
"pytest",
"ruff",
"mypy",
"lxml", # for mypy html coverage
]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "dirty-tag"