diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-04-22 19:27:57 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-07-09 09:03:20 +0200 |
commit | ca42184b18f521ac84ed98c371528af4ac2640e3 (patch) | |
tree | 9078630313fbf83abac53e1521b6c435ff25dff6 /debian/control | |
parent | a45bb607c2d3900b9151fa0bc45d97f7c28e736b (diff) | |
download | immutables-ca42184b18f521ac84ed98c371528af4ac2640e3.tar.gz immutables-ca42184b18f521ac84ed98c371528af4ac2640e3.zip |
add debian/ directory
Diffstat (limited to 'debian/control')
-rw-r--r-- | debian/control | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..7599402 --- /dev/null +++ b/debian/control @@ -0,0 +1,26 @@ +# SPDX-License-Identifier: CC0-1.0 + +# Immutables debian/control file +# +# Copyright (C) 2021,2022 Wojtek Kosior +# +# Available under the terms of Creative Commons Zero v1.0 Universal. + +Source: python-immutables +Maintainer: W. Kosior <koszko@koszko.org> +Section: devel +Priority: optional +Standards-Version: 4.3.0 +Build-Depends: debhelper (>= 11), dh-python, python3-all-dev (>= 3.6), + python3-setuptools (>= 45), +# also add test dependencies + python3-pytest, python3-pytest-flake8, python3-mypy + +Package: python3-immutables +Architecture: all +Depends: ${python3:Depends}, ${misc:Depends} +X-Python3-Version: >= 3.6 +Description: an immutable mapping type for Python + This library provides an immutable alternative to Python's native 'dict'. + The data structure used if Hash Array Mapped Trie (HAMT) which is also utilized + by some functional languages. |