File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
requests == 2.32.0
2
2
requests_ntlm [NTLMAuthentication ]
3
- setuptools == 65.5 .1
3
+ setuptools == 70.1 .1
4
4
msal == 1.28.0
5
5
pytz == 2021.1
6
6
# The codebase uses "Self" and "Required" available in the typing module
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
3
import io
4
- from distutils .core import setup
5
4
6
- import setuptools
5
+ from setuptools import setup , find_packages
7
6
8
7
with io .open ("README.md" , mode = "r" , encoding = "utf-8" ) as fh :
9
8
long_description = fh .read ()
48
47
"Programming Language :: Python :: 3.10" ,
49
48
"Programming Language :: Python :: 3.11" ,
50
49
],
51
- packages = setuptools . find_packages (
50
+ packages = find_packages (
52
51
exclude = [
53
52
"tests" ,
54
53
"tests.*" ,
You can’t perform that action at this time.
0 commit comments