forked from EnAccess/OpenPAYGO-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (63 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
75 lines (63 loc) · 1.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "openpaygo"
version = "0.6.3"
description = "OpenPAYGO Python library"
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E*"]
authors = [
{ name = "EnAccess", email = "info@enaccess.org" }
]
keywords = [
"paygo",
"open-paygo"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dependencies = [
"siphash>=0.0.1",
]
[dependency-groups]
dev = [
"pytest>=7.0.1",
]
[project.urls]
Homepage = "https://enaccess.github.io/OpenPAYGO-docs/"
Documentation = "https://enaccess.github.io/OpenPAYGO-docs/"
Repository = "https://github.com/EnAccess/OpenPAYGO-python/"
Issues = "https://github.com/EnAccess/OpenPAYGO-python/issues"
Changelog = "https://github.com/EnAccess/OpenPAYGO-python/releases"
Funding = "https://github.com/sponsors/EnAccess"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
[tool.ruff]
# Add some rules to ruff's default:
# - isort: https://docs.astral.sh/ruff/rules/#isort-i
# - pep8-naming: https://docs.astral.sh/ruff/rules/#pep8-naming-n
select = ["E", "F", "I", "N"]
# Same as Black.
line-length = 88