-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (95 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
104 lines (95 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
[project]
name = "grace-framework"
version = "1.0.5-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.12"
dependencies = [
"discord>2.0",
"logger",
"coloredlogs",
"python-dotenv",
"configparser",
"click",
"sqlalchemy",
"sqlalchemy-utils",
"sqlmodel",
"pydantic",
"alembic",
"cookiecutter",
"jinja2-strcase",
"inflect",
"watchdog",
"apscheduler"
]
[project.optional-dependencies]
dev = [
"mypy",
"pytest",
"pytest-mock",
"pytest-asyncio",
"coverage",
"black",
"isort",
]
[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.overrides]]
module = ["jinja2_pluralize.*", "cookiecutter.*"]
follow_untyped_imports = true
[tool.black]
target-version = ["py312"]
exclude = '''
/(
\.direnv
| \.eggs
| \.git
| \.hg
| \.mypy_cache
| \.venv
| venv
| \.svn
| _build
| buck-out
| build
| dist
| __pypackages__
| grace/generators/templates
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
line_length = 88
skip_glob = [
".direnv/**",
".eggs/**",
".git/**",
".hg/**",
".mypy_cache/**",
".venv/**",
"venv/**",
".svn/**",
"_build/**",
"buck-out/**",
"build/**",
"dist/**",
"__pypackages__/**",
"grace/generators/templates/**",
]