comparison setup.py @ 7931:bc45c3df770a

chore(ruff): format setup.py imports.
author John Rouillard <rouilj@ieee.org>
date Sun, 05 May 2024 17:20:35 -0400
parents 0127045f573b
children 55229bfcdd8a
comparison
equal deleted inserted replaced
7930:0127045f573b 7931:bc45c3df770a
16 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS" 16 # FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
17 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, 17 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
18 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 18 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
19 # 19 #
20 20
21
22 from __future__ import print_function 21 from __future__ import print_function
22
23 import os
24 import sys
25 from glob import glob
26 from sysconfig import get_path
27
28 from setuptools import setup
29
30 from roundup.dist.command.bdist_rpm import bdist_rpm
31 from roundup.dist.command.build import build, list_message_files
23 from roundup.dist.command.build_doc import build_doc 32 from roundup.dist.command.build_doc import build_doc
24 from roundup.dist.command.build import build, list_message_files
25 from roundup.dist.command.bdist_rpm import bdist_rpm
26 from roundup.dist.command.install_lib import install_lib 33 from roundup.dist.command.install_lib import install_lib
27
28 from setuptools import setup
29
30 from sysconfig import get_path
31
32 import sys, os
33 from glob import glob
34 34
35 35
36 def include(d, e): 36 def include(d, e):
37 """Generate a pair of (directory, file-list) for installation. 37 """Generate a pair of (directory, file-list) for installation.
38 38

Roundup Issue Tracker: http://roundup-tracker.org/