forked from NathanNT/ceserver-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 728 Bytes
/
pyproject.toml
File metadata and controls
27 lines (24 loc) · 728 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
[project]
name = "ceserver-api"
version = "0.1.2"
description = "Python Client to comunicate with Cheat Engine's ceserver"
readme = "README.md"
license = { text = "BSD" }
authors = [{ name = "Felipe Gatica", email = "felipeparagati@gmail.com" }]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"construct>=2.10"
]
[project.urls]
Homepage = "https://github.com/juzt3/ceserver-api"
Repository = "https://github.com/juzt3/ceserver-api"
Issues = "https://github.com/juzt3/ceserver-api/issues"
[build-system]
requires = ["setuptools>=42","wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["ceserver_api"]