-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (47 loc) · 1.5 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rfc3987-syntax"
version = "1.1.0"
description = "Helper functions to syntactically validate strings according to RFC 3987."
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICEN[CS]E*"]
keywords = ["RFC 3987", "RFC3987", "validator", "syntax", "parser"]
authors = [
{ name = "Will Riley", email = "wanderingwill@gmail.com" },
{ name = "Jan Kowalleck" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Utilities"
]
dependencies = ["lark>=1.2.2"]
[project.urls]
Homepage = "https://github.com/willynilly/rfc3987-syntax"
Documentation = "https://github.com/willynilly/rfc3987-syntax#readme"
Issues = "https://github.com/willynilly/rfc3987-syntax/issues"
Source = "https://github.com/willynilly/rfc3987-syntax"
[project.optional-dependencies]
testing = [
"pytest>=8.3.5",
]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.hatch.build.targets.sdist.force-include]
"CITATION.cff" = "src/rfc3987_syntax/CITATION.cff"