-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
35 lines (32 loc) · 1.09 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 = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sexpdata"
version = "1.0.3"
authors = [
{ name="Joshua D. Boyd", email="[email protected]" },
{ name="Takafumi Arakaki", email="[email protected]" },
]
description = "S-expression parser for Python"
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 3 - Alpha",
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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 :: Lisp",
"Programming Language :: Emacs-Lisp",
]
dynamic = ["keywords"]
license = {file = "LICENSE"}
[project.urls]
"Homepage" = "https://github.com/jd-boyd/sexpdata"
"Bug Tracker" = "https://github.com/jd-boyd/sexpdata/issues"