-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.19 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
[project]
name = "hymn"
description = "Hy Monad Notation - a monad library for Hy"
authors = [
{name = "Philip Xu", email = "[email protected]"},
]
dependencies = [
"hy>=0.28.0",
]
dynamic = ["version"]
requires-python = ">=3.8,<3.13"
readme = "README.rst"
license = {text = "BSD-New"}
keywords = ["hy lisp monad functional programming"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Lisp",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/pyx/hymn/"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
doc = [
"Sphinx",
]
lint = [
"flake8",
]
test = [
"pytest",
]
[tool.pdm.scripts]
doc_html = {shell = "cd docs; make html; cd .."}
doc_pdf = {shell = "cd docs; make latexpdf; cd .."}
docs = {composite = ["doc_html", "doc_pdf"]}
lint = "flake8 hymn tests"
test = "pytest"
[tool.pdm.version]
source = "file"
path = "hymn/__init__.py"