-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.18 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
[build-system]
requires = ["hatchling>=1.18.0", "hatch-vcs", "hatch-fancy-pypi-readme"]
build-backend = "hatchling.build"
[project]
name = "tier-sdk"
dynamic = ["version"]
readme = "README.md"
license = "MIT"
description = "TIER Python SDK"
authors = [
{ name = "Owen Voke", email = "development@voke.dev" }
]
keywords = ["tier", "sdk"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.11.0"
dependencies = [
"requests>=2.28.1"
]
[project.urls]
"Source Code" = "https://github.com/owenvoke/tier-python-sdk"
"Issues" = "https://github.com/owenvoke/tier-python-sdk/issues"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["tier"]
[tool.hatch.envs.default]
dependencies = [
"black",
"mypy",
"pytest==7.1",
"requests-mock==1.10",
"types-requests",
]
[tool.hatch.envs.default.scripts]
test = [
"black --check --diff .",
"mypy tier",
"pytest",
]
lint = [
"black ."
]
[tool.black]
target-version = ["py39", "py310"]