-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (62 loc) · 1.5 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
[build-system]
requires = ["hatchling>=1.11", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "jsonjsc"
authors = [
{ name="IDI-Systems", email="[email protected]" },
{ name="C. Foster", email="[email protected]" },
]
description = "A package to parse out C/JS style block and single line comments from JSON files."
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
]
dependencies = [
]
dynamic = [
"version",
]
[project.urls]
"Homepage" = "https://github.com/IDI-Systems/jsonjsc"
"Bug Tracker" = "https://github.com/IDI-Systems/jsonjsc"
## Hatch
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
]
[tool.hatch.build.targets.wheel]
packages = ["jsonjsc"]
[tool.hatch.version]
source = "vcs"
## Hatch environments
[tool.hatch.envs.default]
dependencies = [
"pytest",
]
[tool.hatch.envs.default.scripts]
full = "pytest {args:tests}"
[[tool.hatch.envs.test.matrix]]
python = ["37", "38", "39", "310", "311"]
[tool.hatch.envs.lint]
detached = true
dependencies = [
"flake8",
]
[tool.hatch.envs.lint.scripts]
style = [
"flake8 {args:.}",
]
all = [
"style",
]