-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 837 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "resp-server"
version = "0.2.3"
description = "A lightweight, embeddable, pure-Python Redis-compatible server for testing."
readme = "README.md"
authors = [{name = "Vivek Dagar", email = "vivek@example.com"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Topic :: Database",
]
keywords = ["redis", "server", "embedded", "testing", "mock"]
requires-python = ">=3.9"
dependencies = ["click"]
[project.urls]
Home = "https://github.com/vivekdagar/resp-server"
[project.scripts]
resp-server = "resp_server.main:main"