forked from allenporter/ical
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
39 lines (35 loc) · 828 Bytes
/
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
[metadata]
name = ical
version = 1.2.0
description = Python iCalendar implementation (rfc 2445)
long_description = file: README.md
long_description_content_type = text/markdown
prodid = github.com/allenporter/ical
url = https://github.com/allenporter/ical
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 =
python-dateutil>=2.8.2
tzdata>=2022.1
include_package_data = True
package_dir =
= .
[options.packages.find]
where = .
exclude =
tests
tests.*
[options.package_data]
ical = py.typed
[flake8]
max-line-length = 88
ignore =
E501, # black: Line too long
W503 # black: Line break before binary operator