Skip to content

Commit 91a9973

Browse files
committed
Remove unnecessary files and update project file
1 parent 5d729b3 commit 91a9973

File tree

4 files changed

+42
-20
lines changed

4 files changed

+42
-20
lines changed

.isort.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

.style.yapf

Lines changed: 0 additions & 5 deletions
This file was deleted.

mypy.ini

Lines changed: 0 additions & 3 deletions
This file was deleted.

pyproject.toml

Lines changed: 42 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,46 @@
11
[build-system]
2-
requires = ["flit_core >=2,<4", "requests >= 2.23.0"]
2+
requires = ["flit_core >=3.5,<4", "requests >= 2.27.0"]
33
build-backend = "flit_core.buildapi"
44

5-
[tool.flit.metadata]
6-
module = "msgraph"
7-
author = "Microsoft"
8-
author-email = "[email protected]"
9-
home-page = "https://github.com/microsoftgraph/msgraph-sdk-python-core"
10-
dist-name="msgraph-core"
11-
requires-python=">=3.5"
12-
classifiers = [ "License :: OSI Approved :: MIT License",]
13-
description-file = "README.md"
5+
[project]
6+
name = "msgraph-core"
7+
authors = [{name = "Microsoft", email = "[email protected]"}]
8+
dependencies = [
9+
"requests >= 2.27.0",
10+
]
11+
license = {file = "LICENSE"}
12+
readme = "README.md"
13+
keywords = ["msgraph", "openAPI", "Microsoft", "Graph"]
14+
classifiers = [
15+
"Development Status :: 3 - Alpha",
16+
"Programming Language :: Python :: 3.6",
17+
"Programming Language :: Python :: 3.7",
18+
"Programming Language :: Python :: 3.8",
19+
"Programming Language :: Python :: 3.9",
20+
"Programming Language :: Python :: 3.10",
21+
"Programming Language :: Python :: 3.11",
22+
"License :: OSI Approved :: MIT License",
23+
]
24+
dynamic = ["version", "description"]
1425

26+
[project.urls]
27+
homepage = "https://github.com/microsoftgraph/msgraph-sdk-python-core#readme"
28+
repository = "https://github.com/microsoftgraph/msgraph-sdk-python-core"
29+
documentation = "https://github.com/microsoftgraph/msgraph-sdk-python-core/docs"
30+
31+
[tool.flit.module]
32+
name = "msgraph"
33+
34+
[tool.mypy]
35+
warn_unused_configs = true
36+
files = "msgraph"
37+
ignore_missing_imports = true
38+
39+
[tool.yapf]
40+
based_on_style = "pep8"
41+
dedent_closing_brackets = true
42+
each_dict_entry_on_separate_line = true
43+
column_limit = 100
44+
45+
[tool.isort]
46+
profile = "hug"

0 commit comments

Comments
 (0)