forked from tweag/python-nix
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (23 loc) · 734 Bytes
/
Copy pathpyproject.toml
File metadata and controls
25 lines (23 loc) · 734 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
[build-system]
requires = ["setuptools>=61.0", "cffi>=1.0.0", "pkgconfig>=1.5.0"]
build-backend = "setuptools.build_meta"
[project]
name = "python-nix"
version = "0.0.1"
authors = [
{ name="Matteo Fusi", email="fusiled@gmail.com" }
]
description = "Python bindings for Nix using CFFI"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Interpreters",
"Typing :: Typed"
]
optional-dependencies = {docs= ["sphinx"]}
[project.urls]
"Homepage" = "https://github.com/fusiled/python-nix"
"Bug Tracker" = "https://github.com/fusiled/python-nix/issues"