|
1 | 1 | [build-system] |
2 | | -requires = ["flit_core >=2,<4", "requests >= 2.23.0"] |
| 2 | +requires = ["flit_core >=3.5,<4", "requests >= 2.27.0"] |
3 | 3 | build-backend = "flit_core.buildapi" |
4 | 4 |
|
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"] |
14 | 25 |
|
| 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