-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (45 loc) · 985 Bytes
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
version = "0.0"
name = "lona-redis"
description = ""
authors = [
{ name="Florian Scherf", email="[email protected]" },
]
license = { file="LICENSE.txt" }
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.7"
dependencies = [
"lona",
]
[project.optional-dependencies]
packaging = [
"build",
"twine",
]
testing = [
"tox",
"coverage==7.1.0",
"pytest==7.2.1",
]
[project.urls]
"Homepage" = "https://github.com/lona-web-org/lona-redis"
"Repository" = "https://github.com/lona-web-org/lona-redis"
"Bug Tracker" = "https://github.com/lona-web-org/lona-redis/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["lona_redis*"]
[tool.setuptools.exclude-package-data]
"*" = [
".*",
"~*",
"*.swp",
"*.pyc",
]