nyx-bot/pyproject.toml

49 lines
1.1 KiB
TOML
Raw Normal View History

2022-12-10 02:13:15 +01:00
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nyx-bot"
version = "0.0.1"
description = "A matrix bot to do amazing things!"
readme = "README.md"
2023-06-13 02:17:42 +02:00
requires-python = ">=3.8"
2022-12-10 02:13:15 +01:00
dependencies = [
"matrix-nio>=0.10.0",
"Markdown>=3.1.1",
"PyYAML>=5.1.2",
2023-02-01 13:48:51 +01:00
"tomli >= 1.1.0; python_version < \"3.11\"",
2022-12-10 02:13:15 +01:00
"Wand",
"python-magic",
"peewee",
"python-dateutil",
2022-12-25 14:14:24 +01:00
"wordcloud",
2023-02-01 14:13:04 +01:00
"aiohttp",
2023-06-13 05:13:30 +02:00
"xxhash",
2022-12-10 02:13:15 +01:00
]
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.optional-dependencies]
postgres = ["psycopg2>=2.8.5"]
dev = [
"isort==5.0.4",
"flake8==3.8.3",
"flake8-comprehensions==3.2.3",
"black==22.6.0",
]
e2e = ["matrix-nio[e2e]>=0.10.0"]
[project.scripts]
nyx-bot = "nyx_bot:run"
# Setuptools
[tool.setuptools]
packages = ["nyx_bot"]