-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
97 lines (81 loc) · 1.99 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = [
"setuptools==71.1.0",
"setuptools-scm==8.1.0",
"wheel==0.43.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/immoney/_version.py"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown; charset=UTF-8"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[project]
name = "immoney"
authors = [
{ name="Anton Agestam", email="git@antonagestam.se" },
]
description = "Immutable money types for Python"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Typing :: Typed",
]
keywords = [
"money",
"finance",
"fintech",
"type-driven",
"immutable",
]
dynamic = ["version", "readme"]
dependencies = [
"typing-extensions>=4.6.3",
"abcattrs>=0.3.2",
]
[project.optional-dependencies]
pydantic = [
"pydantic>=2.0.3",
# 2.10 deprecates some functions under pydantic.core_schema.*, forcing dropping
# support for prior versions.
"pydantic-core>=2.10",
]
babel = ["babel>=2.12.1"]
test = [
"pytest",
"coverage",
"hypothesis",
]
type-check = [
"mypy",
"types-setuptools",
"types-babel",
]
[project.urls]
"Source Repository" = "https://github.com/antonagestam/immoney/"
"Bug Tracker" = "https://github.com/antonagestam/immoney/issues"
[tool.pip-tools]
generate-hashes = true
strip-extras = true
upgrade = true
[tool.black]
target-version = ["py310"]
[tool.pytest.ini_options]
testpaths = ["tests", "src"]
addopts = "--doctest-modules"
[tool.check-manifest]
ignore = ["src/immoney/_version.py"]