-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
41 lines (36 loc) · 890 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "aiogemini"
authors = [{name = "David Keijser", email = "[email protected]"}]
version = "0.2.0"
description = "Gemini protocol implementation for asyncio"
urls = {Homepage = "https://github.com/keis/aiogemini"}
dependencies = [
"yarl ~= 1.6",
"cryptography >= 3.2,< 42.0",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
tests = [
"hypothesis >= 5.41,< 7.0",
"matchmock ~= 2.1.1",
"mypy >= 1.3,< 2.0",
"pycodestyle ~= 2.6",
"PyHamcrest ~= 2.0",
"pytest >= 6,< 9",
"pytest-asyncio ~= 0.14",
]
[tool.setuptools]
packages = [
"aiogemini",
"aiogemini.server",
"aiogemini.client",
]
zip-safe = false
include-package-data = false
[tool.setuptools.package-data]
aiogemini = ["py.typed"]