diff options
author | Helmut Grohne <helmut@subdivi.de> | 2022-02-14 18:28:45 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2022-02-14 18:28:45 +0100 |
commit | ee2b69cef7dc89d275364f4809ee9e0318b59509 (patch) | |
tree | 9f61ccdcd0b972ae1608f919dc77ac59eb30d1d2 | |
parent | be6834fe527823a64269c5ab1107af4c97882a44 (diff) | |
download | wsgitools-ee2b69cef7dc89d275364f4809ee9e0318b59509.tar.gz |
switch from distutils to setuptools
distutils will be removed from Python 3.12.
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ #!/usr/bin/env python -from distutils.core import setup +from setuptools import setup setup(name="wsgitools", version="0.3.1", |