-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (35 loc) · 860 Bytes
/
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
[project]
name = "notashark"
version = "1.1.1"
description = "notashark - a discord bot for King Arthur's Gold"
readme = "README.md"
authors = [
{name = "moonburnt", email = "moonburnt@disroot.org"},
]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
requires-python = ">=3.8"
dependencies = [
"discord.py==2.1.0",
"requests==2.28.1",
"pykagapi==0.2.1",
]
[project.urls]
homepage = "https://github.com/moonburnt/notashark"
[project.scripts]
notashark = "notashark:cli.main"
[project.optional-dependencies]
dev = [
"black==22.10.0",
]
[tool.setuptools]
py-modules = [
"notashark",
]
[tool.black]
line-length = 80
include = '(?:notashark|directory2)\/.*\.pyi?$'