-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
72 lines (65 loc) · 1.56 KB
/
pyproject.toml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>65", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
target_version = ['py310']
[tool.isort]
profile = "black"
multi_line_output = 3
order_by_type = false
line_length = 79
[project]
name = "icw"
urls = {homepage = "https://github.com/n8henrie/icw"}
dynamic = ["version", "readme"]
license = { text = "MIT" }
description = "ICS converter webapp"
authors = [ {name = "Nathan Henrie", email = "[email protected]"} ]
keywords = [ "ics", "icalendar", ]
classifiers= [
"Programming Language :: Python :: 3.10",
]
dependencies = [
"chardet==2.3.0",
"Flask-Bootstrap==3.3.7.1",
"Flask-WTF==1.0.1",
"flask==2.2",
"gunicorn==20.1.0",
"icalendar==4.1.0",
"WTForms==2.0.2",
]
[tool.setuptools]
zip-safe = false
[project.optional-dependencies]
test = [
"black==22.8.0",
"flake8-docstrings==1.6.0",
"flake8-import-order==0.18.1",
"mypy==0.971",
"pep8-naming==0.13.2",
"pylint==2.15.0",
"pytest==7.1.3",
"tox==3.25.1",
]
dev = [
"build==0.8.0",
"myst-parser==0.18.0",
"sphinx-rtd-theme==1.0.0",
"Sphinx==5.0.2",
"twine==4.0.1",
]
[tool.setuptools.dynamic]
version = {attr = "icw.__version__"}
readme = {file = ["README.md", "CHANGELOG.md"]}
[tool.mypy]
check_untyped_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
follow_imports = "silent"
ignore_missing_imports = true
python_version = "3.10"
show_column_numbers = true
warn_incomplete_stub = false
warn_redundant_casts = true
warn_unused_ignores = true