-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.03 KB
/
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
[build-system]
requires = [
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "ogsapi"
version = "1.3.0"
license = {file = "LICENSE"}
authors = [
{ name="Dakota Marshall", email="me@dakotamarshall.net" },
]
description = "An API Wrapper for online-go.com, an online Go / Baduk server"
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"python-engineio==3.13.2",
"python-socketio==4.6.0",
"websocket-client",
"requests",
"loguru"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://gitlab.com/dakota.marshall/ogs-python"
Repository = "https://gitlab.com/dakota.marshall/ogs-python"
Documentation = "https://ogs-python.dakotamarshall.net/"
Changelog = "https://gitlab.com/dakota.marshall/ogs-python/-/blob/prod/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
ogsapi = ["py.typed"]