-
Notifications
You must be signed in to change notification settings - Fork 208
/
pyproject.toml
70 lines (64 loc) · 2 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
[build-system]
requires = ["setuptools>=71.1.0", "setuptools_scm>=8.1.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "pyxero"
description = "Python API for accessing the REST API of the Xero accounting tool."
readme = "README.md"
requires-python = ">= 3.9"
license.file = "LICENSE"
authors = [
{name="Russell Keith-Magee", email = "[email protected]"},
]
maintainers = [
{name="Russell Keith-Magee", email = "[email protected]"},
]
keywords = [
"xero",
"api",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Accounting",
]
dependencies = [
"requests >= 1.1.0, < 3",
"requests-oauthlib >= 0.3.0, < 3",
"python-dateutil>=2.8, < 3",
"PyJWT >= 1.6.4, < 3", # This is required as part of oauthlib but doesn't seem to get included sometimes.
"cryptography>=1.3.1", # As above, but fixes issue with missing module imports not picked up for some reason.
]
[project.optional-dependencies]
# Extras used by developers *of* briefcase are pinned to specific versions to
# ensure environment consistency.
dev = [
"pre-commit == 4.0.1",
"pytest == 8.3.4",
"tox == 4.23.2",
]
[project.urls]
Homepage = "https://github.com/freakboy3742/pyxero"
Tracker = "https://github.com/freakboy3742/pyxero/issues"
Source = "https://github.com/freakboy3742/pyxero"
[tool.setuptools.dynamic]
version = {attr="xero.__version__"}
[tool.pytest.ini_options]
testpaths = "tests"
[tool.isort]
profile = "black"
skip_glob = [
"venv*",
"local",
]
multi_line_output = 3