forked from Code-Society-Lab/grace-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.04 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
[project]
name = "grace-framework"
version = "0.10.8-alpha"
authors = [
{ name="Simon Roy" }
]
maintainers = [
{ name="Code Society Lab", email="admin@codesociety.xyz" }
]
description = "Extensible Discord bot framework based on Discord.py"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
dependencies = [
"discord>2.0",
"logger",
"coloredlogs",
"python-dotenv",
"configparser",
"click",
"sqlalchemy",
"sqlalchemy-utils",
"alembic",
"cookiecutter",
"jinja2-strcase",
"inflect",
"mypy",
"pytest",
"flake8",
"pytest-mock",
"coverage",
"watchdog",
"apscheduler"
]
[project.urls]
"Homepage" = "https://codesociety.xyz"
"Source" = "https://github.com/Code-Society-Lab/grace-framework"
[project.scripts]
grace = "grace.cli:main"
[tool.setuptools]
packages = ["grace"]
license-files = []
[tool.mypy]
exclude = ['grace/generators/templates']
[[tool.mypy.overrides]]
module = ["jinja2_pluralize.*", "cookiecutter.*"]
follow_untyped_imports = true