-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 761 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
[build-system]
requires = ["setuptools", "wheel", "setuptools-rust", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "udbserver"
dynamic = ["version"]
license = "MIT"
description = "Python bindings of udbserver"
readme = "README.rst"
authors = [{ name = "Bet4", email = "0xbet4@gmail.com" }]
urls = { homepage = "https://github.com/bet4it/udbserver" }
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Debuggers",
]
dependencies = [
"unicorn >= 2",
]
[tool.setuptools]
zip-safe = false
[tool.setuptools_scm]
root = "../.."