-
Notifications
You must be signed in to change notification settings - Fork 89
/
pyproject.toml
37 lines (34 loc) · 883 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "nostr"
authors = [
{ name="Jeff Thibault", email="[email protected]" },
]
description = "A Python library for making Nostr clients"
urls = { Homepage = "https://github.com/jeffthibault/python-nostr" }
readme = "README.md"
requires-python = ">3.6.0"
dependencies = [
"cffi>=1.15.0",
"cryptography>=37.0.4",
"pycparser>=2.21",
"python-socks>=2.1.1",
"secp256k1>=0.14.0",
"websocket-client>=1.3.3",
]
license = {file = "LICENSE"}
classifiers=[
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
]
dynamic=["version"]
[tool.setuptools_scm]
write_to = "nostr/_version.py"
[project.optional-dependencies]
test = [
"pytest >=7.2.0",
"pytest-cov[all]"
]