1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Don't use deprecated distutils module.
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: https://github.com/tylere/pykml/pull/44
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,6 @@
import sys, os
-try:
- from setuptools import setup
-except ImportError:
- from distutils.core import setup
+
+from setuptools import setup
version = '0.2.0'
|