-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
56 lines (47 loc) · 1.37 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
49
50
51
52
53
54
55
56
# see https://github.com/karlicoss/pymplate for up-to-date reference
[project]
dynamic = ["version"] # version is managed by setuptools_scm
name = "hypexport"
# common/DAL dependencies
dependencies = []
requires-python = ">= 3.9"
## these need to be set if you're planning to upload to pypi
description = "Export and access your Hypothes.is data"
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/hypexport"
##
[project.optional-dependencies]
export = [
# dependency of Hypothesis API
# todo sadly, the API itself is not a python package, so checked it out as a submodule.. would be nice to convert?
"requests",
]
optional = [
"orjson",
"colorlog",
"ijson", # faster iterative json processing
]
[dependency-groups]
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"
# workaround for error during uv publishing
# see https://github.com/astral-sh/uv/issues/9513#issuecomment-2519527822
[tool.setuptools]
license-files = []