-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.1 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "Grace"
version = "2.0.0"
description = "The Code Society community Bot"
authors = [
{ name = "Code Society Lab" }
]
license = { text = "GNU General Public License v3.0" }
requires-python = ">=3.11"
readme = "README.md"
dependencies = [
"grace-framework @ git+https://github.com/Code-Society-Lab/grace-framework.git@main",
"discord-pretty-help==2.0.4",
"emoji>=2.1.0",
"nltk",
"requests",
"pillow",
"geopy",
"pytz",
"tzdata",
"timezonefinder",
"pygithub",
"googletrans==4.0.0-rc1",
"openai==0.26.1",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"flake8",
"mypy",
"ruff",
"freezegun",
]
[project.urls]
Homepage = "https://github.com/Code-Society-Lab/grace"
Documentation = "https://github.com/Code-Society-Lab/grace/wiki"
"Issue Tracker" = "https://github.com/Code-Society-Lab/grace/issues"
"Discord Server" = "https://discord.gg/code-society-823178343943897088"
[tool.setuptools.packages.find]
include = ["*"]