We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
distutils
1 parent 143752b commit 52a6b94Copy full SHA for 52a6b94
setup.py
@@ -1,13 +1,12 @@
1
-import distutils.cmd
2
import os
3
import subprocess
4
5
-from setuptools import find_packages, setup
+from setuptools import Command, find_packages, setup
6
7
exec(open("psqlextra/_version.py").read())
8
9
10
-class BaseCommand(distutils.cmd.Command):
+class BaseCommand(Command):
11
user_options = []
12
13
def initialize_options(self):
tox.ini
@@ -20,6 +20,7 @@ deps =
20
psycopg28: psycopg2[binary]~=2.8
21
psycopg29: psycopg2[binary]~=2.9
22
psycopg31: psycopg[binary]~=3.1
23
+ setuptools
24
.[test]
25
setenv =
26
DJANGO_SETTINGS_MODULE=settings
0 commit comments