Skip to content

Commit d3e9c6e

Browse files
authored
Merge pull request #802 from microsoftgraph/bugfix/flit-configuration
ci: adds missing flit configuration
2 parents ac303af + a2c60f0 commit d3e9c6e

File tree

2 files changed

+70
-125
lines changed

2 files changed

+70
-125
lines changed

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
2-
requires = ["setuptools>=65.5.0", "wheel"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["flit_core >=3.2,<4"]
3+
build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "msgraph-sdk"
@@ -44,6 +44,9 @@ homepage = "https://github.com/microsoftgraph/msgraph-sdk-python#readme"
4444
repository = "https://github.com/microsoftgraph/msgraph-sdk-python"
4545
documentation = "https://github.com/microsoftgraph/msgraph-sdk-python/docs"
4646

47+
[tool.flit.module]
48+
name = "msgraph-sdk"
49+
4750
[tool.mypy]
4851
warn_unused_configs = true
4952
files = "msgraph"

requirements-dev.txt

Lines changed: 65 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -1,136 +1,78 @@
1-
-i https://pypi.org/simple
2-
3-
astroid==3.2.2 ; python_full_version >= '3.7.2'
4-
1+
aiohttp==3.9.5
2+
aiosignal==1.3.1
3+
anyio==4.4.0
4+
astroid==3.2.2
5+
async-timeout==4.0.3
6+
attrs==23.2.0
7+
azure-core==1.30.2
8+
azure-identity==1.17.1
59
build==1.2.1
6-
710
bumpver==2023.1129
8-
9-
click==8.1.7 ; python_version >= '3.6'
10-
11-
colorama==0.4.6 ; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'
12-
13-
dill==0.3.8 ; python_version >= '3.11'
14-
15-
importlib-metadata==6.8.0 ; python_version >= '3.8'
16-
17-
isort==5.13.2
18-
19-
lazy-object-proxy==1.10.0 ; python_version >= '3.7'
20-
21-
lexid==2021.1006 ; python_version >= '2.7'
22-
23-
looseversion==1.3.0 ; python_version >= '3.5'
24-
25-
mccabe==0.7.0 ; python_version >= '3.6'
26-
27-
mypy==1.10.1
28-
29-
mypy-extensions==1.0.0 ; python_version >= '3.5'
30-
31-
packaging==24.1 ; python_version >= '3.7'
32-
33-
pathlib2==2.3.7.post1
34-
35-
platformdirs==4.2.2 ; python_version >= '3.7'
36-
37-
pylint==3.2.5
38-
39-
pyproject-hooks==1.1.0 ; python_version >= '3.7'
40-
41-
setuptools==70.3.0
42-
43-
six==1.16.0 ; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
44-
45-
toml==0.10.2 ; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'
46-
47-
tomli==2.0.1 ; python_version >= '3.7'
48-
49-
tomlkit==0.12.5 ; python_version >= '3.7'
50-
51-
typing-extensions==4.12.2 ; python_version >= '3.7'
52-
53-
wrapt==1.16.0 ; python_version >= '3.11'
54-
55-
yapf==0.40.2
56-
57-
zipp==3.19.2 ; python_version >= '3.8'
58-
59-
aiohttp==3.9.5 ; python_version >= '3.6'
60-
61-
aiosignal==1.3.1 ; python_version >= '3.7'
62-
63-
anyio==4.4.0 ; python_version >= '3.7'
64-
65-
async-timeout==4.0.3 ; python_version >= '3.6'
66-
67-
attrs==23.2.0 ; python_version >= '3.7'
68-
69-
azure-core==1.30.2 ; python_version >= '3.7'
70-
71-
azure-identity==1.17.1
72-
73-
certifi==2024.7.4 ; python_version >= '3.6'
74-
11+
certifi==2024.7.4
7512
cffi==1.16.0
76-
77-
charset-normalizer==3.3.2 ; python_version >= '3.7'
78-
79-
cryptography==42.0.8 ; python_version >= '3.7'
80-
81-
frozenlist==1.4.1 ; python_version >= '3.8'
82-
83-
h11==0.14.0 ; python_version >= '3.7'
84-
13+
charset-normalizer==3.3.2
14+
click==8.1.7
15+
colorama==0.4.6
16+
cryptography==42.0.8
17+
Deprecated==1.2.14
18+
dill==0.3.8
19+
docutils==0.21.2
20+
flit==3.9.0
21+
flit_core==3.9.0
22+
frozenlist==1.4.1
23+
h11==0.14.0
8524
h2==4.1.0
86-
87-
hpack==4.0.0 ; python_full_version >= '3.6.1'
88-
89-
httpcore==1.0.5 ; python_version >= '3.7'
90-
91-
httpx[http2]==0.27.0 ; python_version >= '3.7'
92-
93-
hyperframe==6.0.1 ; python_full_version >= '3.6.1'
94-
95-
idna==3.7 ; python_version >= '3.5'
96-
25+
hpack==4.0.0
26+
httpcore==1.0.5
27+
httpx==0.27.0
28+
hyperframe==6.0.1
29+
idna==3.7
30+
importlib-metadata==6.8.0
31+
isort==5.13.2
32+
lazy-object-proxy==1.10.0
33+
lexid==2021.1006
34+
looseversion==1.3.0
35+
mccabe==0.7.0
9736
microsoft-kiota-abstractions==1.3.3
98-
9937
microsoft-kiota-authentication-azure==1.0.0
100-
10138
microsoft-kiota-http==1.3.2
102-
39+
microsoft-kiota-serialization-form==0.1.0
10340
microsoft-kiota-serialization-json==1.2.0
104-
41+
microsoft-kiota-serialization-multipart==0.1.0
10542
microsoft-kiota-serialization-text==1.0.0
106-
107-
microsoft-kiota-serialization-form ==0.1.0
108-
109-
microsoft-kiota-serialization-multipart ==0.1.0
110-
11143
msal==1.29.0
112-
11344
msal-extensions==1.2.0
114-
11545
msgraph-core==1.1.0
116-
117-
multidict==6.0.5 ; python_version >= '3.7'
118-
119-
portalocker==2.10.0 ; python_version >= '3.5' and platform_system != 'Windows'
120-
46+
multidict==6.0.5
47+
mypy==1.10.1
48+
mypy-extensions==1.0.0
49+
opentelemetry-api==1.25.0
50+
opentelemetry-sdk==1.25.0
51+
opentelemetry-semantic-conventions==0.46b0
52+
packaging==24.1
53+
pathlib2==2.3.7.post1
54+
pendulum==3.0.0
55+
platformdirs==4.2.2
56+
portalocker==2.10.0
12157
pycparser==2.22
122-
123-
pyjwt[crypto]==2.8.0 ; python_version >= '3.7'
124-
125-
python-dateutil==2.9.0.post0 ; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
126-
127-
requests==2.32.3 ; python_version >= '3.7'
128-
129-
sniffio==1.3.1 ; python_version >= '3.7'
130-
131-
uritemplate==4.1.1 ; python_version >= '3.6'
132-
133-
urllib3==2.2.2 ; python_version >= '3.7'
134-
135-
yarl==1.9.4 ; python_version >= '3.7'
136-
58+
PyJWT==2.8.0
59+
pylint==3.2.5
60+
pyproject_hooks==1.1.0
61+
python-dateutil==2.9.0.post0
62+
requests==2.32.3
63+
six==1.16.0
64+
sniffio==1.3.1
65+
std-uritemplate==1.0.3
66+
time-machine==2.14.2
67+
toml==0.10.2
68+
tomli==2.0.1
69+
tomli_w==1.0.0
70+
tomlkit==0.12.5
71+
typing_extensions==4.12.2
72+
tzdata==2024.1
73+
uritemplate==4.1.1
74+
urllib3==2.2.2
75+
wrapt==1.16.0
76+
yapf==0.40.2
77+
yarl==1.9.4
78+
zipp==3.19.2

0 commit comments

Comments
 (0)