-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (33 loc) · 1.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "oslex"
version = "0.1.4"
authors = [
{ name="Tamás PEREGI", email="[email protected]" },
]
description = "OS-independent wrapper for shlex and mslex"
readme = "README.md"
# mslex is supposed to support >=3.5, but it has an accidental f-string, making it unusable on 3.5
# see https://github.com/smoofra/mslex/issues/1
requires-python = ">=3.6"
dependencies = [
"mslex",
]
classifiers = [
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
]
[project.urls]
"Homepage" = "https://github.com/petamas/oslex"
"Bug Tracker" = "https://github.com/petamas/oslex/issues"