-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.05 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "deltaland"
description = "Fantasy MMO game bot for Delta Chat"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
keywords = ["deltachat", "bot"]
authors = [
{email = "adbenitez@hispanilandia.net"},
{name = "adbenitez"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dynamic = [
"version"
]
dependencies = [
"SQLAlchemy>=1.4.44,<2.0",
"aiosqlite>=0.17.0",
"aiofiles>=22.1.0",
"deltabot-cli @ git+https://github.com/deltachat-bot/deltabot-cli-py.git",
]
[project.optional-dependencies]
dev = [
"black",
"mypy",
"isort",
"pylint",
"pylama",
"pytest",
"pytest_asyncio",
"types-aiofiles",
]
[project.scripts]
deltaland = "deltaland:main"
[tool.setuptools]
packages = ["deltaland"]
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = "True"