forked from TristanCacqueray/python-dhall
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
43 lines (39 loc) · 1.15 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
[tool.poetry]
name = "dhall"
version = "0.1.17"
description = "Python bindings for dhall, a functional configuration language"
authors = ["Simon Zeng <[email protected]>", "Tristan Cacqueray <[email protected]>", "Matthias Endler <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{ include = "dhall" }]
repository = "https://github.com/s-zeng/dhall-python"
keywords = ["dhall", "python"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "~=7.0"
pylint = "~=2.6"
flake8 = "~=5.0"
wheel = "*"
pytest-runner = "*"
pytest-benchmark = "*"
hypothesis = "*"
autopep8 = "*"
maturin = "~=1.1"
[build-system]
requires = ["maturin"]
build-backend = "maturin"
[tool.maturin]
compatibility = "manylinux_2_24"
skip-auditwheel = false
sdist-include = ["dhall/*"]