-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 898 Bytes
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 898 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ukbot"
version = "1.1.3"
description = "Wikipedia writing contest bot"
authors = [
{ name = "Dan Michael O. Heggø", email = "danmichaelo@gmail.com" },
{ name = "Jon Harald Søby", email = "jhsoby@wikimedia.no" }
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.8"
keywords = ["wikipedia"]
dependencies = [
"Flask",
"isoweek",
"jsonpath-rw",
"lxml",
"matplotlib",
"more-itertools",
"mwclient",
"mwtemplates",
"mwtextextractor",
"numpy",
"psutil",
"pydash",
"PyMySQL",
"python-dotenv",
"pytz",
"PyYAML",
"requests",
"requests-oauthlib",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9"
]
[project.scripts]
ukbot = "ukbot.ukbot:main"
[tool.setuptools.packages.find]
where = ["."]