-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
55 lines (45 loc) · 1.69 KB
/
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
[build-system]
requires = ["setuptools>=66.1.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["electrumsv*"]
exclude = ["electrumsv.tests*", "electrumsv.data*"]
namespaces = false
[tool.setuptools.package-data]
"electrumsv" = [ "data/**" ]
[tool.setuptools.dynamic]
readme = { file = [ "README.rst" ] }
version = { attr = "electrumsv.version.PACKAGE_VERSION" }
dependencies = { file = [ "contrib/requirements/requirements.txt", "contrib/requirements/requirements-electrumsv.txt" ] }
optional-dependencies = { "hardware" = { file = [ "contrib/requirements/requirements-hw.txt" ] } }
[project]
name = "ElectrumSV"
requires-python = ">=3.9.13,<3.11"
description = "A Bitcoin SV wallet for the desktop"
authors = [
{name = "Roger Taylor", email = "[email protected]" }
]
maintainers = [
{name = "Roger Taylor", email = "[email protected]" }
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Topic :: Office/Business :: Financial",
"License :: The MIT license",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = [ "dependencies", "optional-dependencies", "readme", "version" ]
[project.urls] # Optional
"Homepage" = "https://electrumsv.io"
"Bug Reports" = "https://github.com/pypa/electrumsv/issues"
"Source" = "https://github.com/electrumsv/electrumsv/"
[project.scripts]
electrumsv = "electrumsv.main_entrypoint:main"
electrum-sv = "electrumsv.main_entrypoint:main"