forked from allenporter/gcal_sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
37 lines (33 loc) · 761 Bytes
/
setup.cfg
File metadata and controls
37 lines (33 loc) · 761 Bytes
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
[metadata]
name = gcal-sync
version = 4.2.0
description = A python library for syncing Google Calendar to local storage
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/allenporter/gcal_sync
author = Allen Porter
author_email = allen.porter@gmail.com
license = Apache-2.0
license_file = LICENSE
classifiers =
License :: OSI Approved :: Apache Software License
[options]
packages = find:
python_requires = >= 3.9
install_requires =
aiohttp>=3.8.1
pydantic>=1.9.0,<2.0a
ical>=4.2.5
include_package_data = True
package_dir =
= .
[options.packages.find]
where = .
exclude =
tests
tests.*
[options.package_data]
gcal_sync = py.typed
[flake8]
max-line-length = 88
ignore = E501, W503