forked from fedora-infra/mote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
74 lines (67 loc) · 2.18 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
73
74
[tool.poetry]
name = "mote"
version = "0.7.0"
description = "Python Flask project used to aggregate and distribute IRC meeting minutes and logs for the Fedora Project"
authors = ["Fedora Websites and Apps Team <[email protected]>"]
maintainers = ["Akashdeep Dhar <[email protected]>"]
license="GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/fedora-infra/mote"
repository = "https://github.com/fedora-infra/mote"
documentation = "https://github.com/fedora-infra/mote/README.md"
keywords = ["minutes", "meetings", "Fedora", "teams", "logs"]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
"Topic :: Internet",
]
[tool.poetry.dependencies]
python = "^3.8"
Flask = "^2.0.2 || ^3.0.0"
requests = "^2.31.0"
beautifulsoup4 = "^4.10.0"
Flask-SocketIO = "^5.1.1"
fedora-messaging = "^3.0.0"
gunicorn = "^20.1.0 || ^21.0.0"
gevent = "^23.9.0 || ^24.0.0"
gevent-websocket = "^0.10"
Flask-Caching = "^2.0.0"
python-dateutil = "^2.8.2"
redis = "^4.1.4 || ^5.0.0"
rq = "^1.10.1"
[tool.poetry.dev-dependencies]
black = "^21.11b1"
isort = "^5.10.1"
flake8 = "<8"
tox = "^3.20.1 || ^4.0.0"
pytest = "^7.0.0 || ^8.0.0"
pytest-black = "^0.3.12"
pytest-flake8 = "^1.0.7"
pytest-isort = "^3.0.0 || ^4.0.0"
pytest-cov = "^4.0.0"
pytest-mock = "^3.8.1"
bandit = "^1.7.4"
[tool.pytest.ini_options]
addopts = "--black --isort --flake8 --cov"
flake8-max-line-length = 100
filterwarnings = ["ignore::DeprecationWarning:flake8:254", "ignore::DeprecationWarning:flask_socketio:19"]
norecursedirs = ".git meetbot .tox"
[tool.isort]
profile = "black"
line_length = "100"
known_first_party = ["mote"]
[tool.black]
line-length = 100
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
mote = "mote.main:mainfunc"