-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
40 lines (36 loc) · 846 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
40
[metadata]
name = ical
version = 3.0.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 = [email protected]
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
pydantic>=1.9.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