-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 931 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 931 Bytes
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
[build-system]
requires = [ "setuptools", "setuptools-scm", "wheel" ]
build-backend = "setuptools.build_meta"
[project]
name = "csspring"
authors= [
{ name = "Armen Michaeli", email = "armen@armen.michaeli.name" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing"
]
description = "A CSS parsing library"
dynamic = [ "version" ]
license = "GPL-3.0-only"
license-files = [ "LICENSE.txt" ]
readme = "README.md"
requires-python = ">=3.11"
[project.optional-dependencies]
tests = [ "mypy>=1.7.0", "pytest>=6.2.4" ]
[project.urls]
Github = "https://github.com/amn/csspring"
[tool.mypy]
packages = [ "csspring" ]
[tool.pytest.ini_options]
testpaths = "tests"
[tool.setuptools_scm]