File: pyproject.toml

package info (click to toggle)
python-zombie-imp 0.0.4-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 208 kB
  • sloc: python: 1,318; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 701 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "zombie-imp"
version = "0.0.4"
maintainers = [
  { name="Petr Viktorin", email="encukou@gmail.com" },
]
description = "A copy of the `imp` module that was removed in Python 3.12"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: Python Software Foundation License",
    "Operating System :: OS Independent",
]

[project.urls]
"Homepage" = "https://github.com/encukou/zombie-imp"
"Bug Tracker" = "https://github.com/encukou/zombie-imp/issues"

[tool.setuptools]
packages = ["zombie_imp"]
py-modules = ["imp"]