-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
60 lines (49 loc) · 1.52 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
57
58
59
60
# see https://github.com/karlicoss/pymplate for up-to-date reference
[project]
dynamic = ["version"] # version is managed by setuptools_scm
name = "cachew"
dependencies = [
"appdirs" , # default cache dir
"sqlalchemy>=1.0", # cache DB interaction
"orjson", # fast json serialization
]
requires-python = ">=3.9"
## these need to be set if you're planning to upload to pypi
# description = "TODO"
license = {file = "LICENSE.txt"}
authors = [
{name = "Dima Gerasimov (@karlicoss)", email = "[email protected]"},
]
maintainers = [
{name = "Dima Gerasimov (@karlicoss)", email = "[email protected]"},
]
# keywords = []
# # see: http://pypi.python.org/pypi?%3Aaction=list_classifiers
# classifiers = [
# ]
[project.urls]
Homepage = "https://github.com/karlicoss/cachew"
##
[project.optional-dependencies]
testing = [
"pytz", "types-pytz", # optional runtime only dependency
"pytest",
"more-itertools",
"patchy", # for injecting sleeps and testing concurrent behaviour
"enlighten", # used in logging helper, but not really required
"cattrs", # benchmarking alternative marshalling implementation
"pyinstrument", # for profiling from within tests
"codetiming", # Timer context manager
"ruff",
"mypy",
"lxml", # for mypy html coverage
]
optional = [
"colorlog",
]
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"
local_scheme = "dirty-tag"