-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
58 lines (52 loc) · 1.46 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[metadata]
name = Graph_OneDrive
version = attr: graph_onedrive.__version__
description = Perform simple tasks on OneDrive through the Graph API.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dariobauer/graph-onedrive
author = Dario Bauer
author_email = dariobauer@duck.com
license = BSD-3-Clause
license_files = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
keywords = onedrive, graph, microsoft
project_urls =
Documentation = https://github.com/dariobauer/graph-onedrive/blob/main/docs/DOCUMENTATION.md
Issue Tracker = https://github.com/dariobauer/graph-onedrive/issues
Changes = https://github.com/dariobauer/graph-onedrive/blob/main/CHANGES.md
Source Code = https://github.com/dariobauer/graph-onedrive
[options]
packages = find:
install_requires =
aiofiles
httpx
python_requires = >=3.9
include_package_data = true
package_dir = = src
[options.packages.find]
where =
src
exclude =
tests*
testing*
docs*
[options.entry_points]
console_scripts =
graph-onedrive = graph_onedrive._cli:main
[options.extras_require]
toml =
toml
yaml =
pyyaml
[options.package_data]
graph_onedrive = py.typed
[bdist_wheel]
universal = True