-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
112 lines (94 loc) · 3.08 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project]
name = "hatch-requirements-txt"
version = "0.4.1"
description = "Hatchling plugin to read project dependencies from requirements.txt"
readme = "README.rst"
requires-python = ">=3.6.1"
keywords = [ "dependencies", "hatch", "requirements",]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Hatch",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Packaging",
"Typing :: Typed",
]
dependencies = [ "hatchling>=0.21.0", "packaging>=21.3",]
dynamic = []
[project.license]
file = "LICENSE"
[[project.authors]]
name = "Dominic Davis-Foster"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/repo-helper/hatch-requirements-txt"
"Issue Tracker" = "https://github.com/repo-helper/hatch-requirements-txt/issues"
"Source Code" = "https://github.com/repo-helper/hatch-requirements-txt"
[project.entry-points.hatch]
requirements_txt = "hatch_requirements_txt"
[tool.mkrecipe]
conda-channels = [ "conda-forge", "domdfcoding",]
extras = "all"
[tool.whey]
base-classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Hatch",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Archiving :: Packaging",
"Typing :: Typed",
]
python-versions = [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
python-implementations = [ "CPython", "PyPy",]
platforms = [ "Windows", "macOS", "Linux",]
license-key = "MIT"
package = "hatch_requirements_txt"
[tool.mypy]
python_version = "3.7"
namespace_packages = true
check_untyped_defs = true
warn_unused_ignores = true
no_implicit_optional = true
show_error_codes = true
[tool.snippet-fmt]
directives = [ "code-block",]
[tool.snippet-fmt.languages.python]
reformat = true
[tool.snippet-fmt.languages.TOML]
reformat = true
[tool.snippet-fmt.languages.ini]
[tool.snippet-fmt.languages.json]
[tool.dependency-dash."requirements.txt"]
order = 10
[tool.dependency-dash."tests/requirements.txt"]
order = 20
include = false
[tool.hatch.build]
exclude = [
"/*",
"!/hatch_requirements_txt",
"!/hatch_requirements_txt/**/requirements.txt",
"!/requirements.txt",
"tests",
"doc-source",
]
[tool.hatch.build.sdist]
include = [ "hatch_requirements_txt", "requirements.txt",]
[tool.hatch.build.wheel]
include = [ "hatch_requirements_txt",]