Skip to content

Commit

Permalink
fix: replace distutils with setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrem committed Jun 26, 2024
1 parent 5445a1d commit ebb9a15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
requests==2.32.0
requests_ntlm [NTLMAuthentication]
setuptools==65.5.1
setuptools==70.1.1
msal==1.28.0
pytz==2021.1
# The codebase uses "Self" and "Required" available in the typing module
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
from distutils.core import setup

import setuptools
from setuptools import setup, find_packages

with io.open("README.md", mode="r", encoding="utf-8") as fh:
long_description = fh.read()
Expand Down Expand Up @@ -48,7 +47,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=setuptools.find_packages(
packages=find_packages(
exclude=[
"tests",
"tests.*",
Expand Down

0 comments on commit ebb9a15

Please sign in to comment.