We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5445a1d commit ebb9a15Copy full SHA for ebb9a15
requirements.txt
@@ -1,6 +1,6 @@
1
requests==2.32.0
2
requests_ntlm [NTLMAuthentication]
3
-setuptools==65.5.1
+setuptools==70.1.1
4
msal==1.28.0
5
pytz==2021.1
6
# The codebase uses "Self" and "Required" available in the typing module
setup.py
@@ -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
7
8
with io.open("README.md", mode="r", encoding="utf-8") as fh:
9
long_description = fh.read()
@@ -48,7 +47,7 @@
48
47
"Programming Language :: Python :: 3.10",
49
"Programming Language :: Python :: 3.11",
50
],
51
- packages=setuptools.find_packages(
+ packages=find_packages(
52
exclude=[
53
"tests",
54
"tests.*",
0 commit comments