-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 loc) · 1.61 KB
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
[tool.poetry]
name = "c3voc-schedule-tools"
version = "1.2.0"
description = "Library to generate, convert and validate [schedule files](https://c3voc.de/wiki/schedule) for events which use the [pretalx](https://github.com/pretalx/pretalx), [frab][frab-website] or every other system able to generate schedule.json or CSV files in the correct format."
authors = [
"Andi Hubel <andi@muc.ccc.de>"
]
license = "EUPL-1.2"
homepage = "https://c3voc.de/wiki/schedule"
repository = "https://github.com/voc/schedule"
readme = "voc/README.md"
packages = [
{ include = "voc" }
]
keywords = ["c3voc", "schedule", "event", "conference", "pretalx", "frab", "c3hub"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
[project]
name = "c3voc-schedule-tools"
requires-python = ">=3.13"
[tool.poetry.dependencies]
python = "^3.13"
requests = "^2.32.0"
python-dateutil = "^2.8.2"
pytz = "^2022.6"
six = "^1.16.0"
lxml = ">=4.9.1,<7.0.0"
gql = ">=3.0.0a5"
aiohttp = ">=3.7.4.post0"
GitPython = "^3.1.41"
beautifulsoup4 = "^4.12.3"
html5lib = "^1.1"
icalendar = "^5.0.12"
pydantic = "^2.12.5"
ics = "^0.7.2"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
Flake8-pyproject = "^1.2.2"
[tool.flake8]
exclude = [".venv"]
ignore = ["E501"]
max-line-length = 150
per-file-ignores = ["voc/__init__.py:F401"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"