-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (61 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (61 loc) · 1.57 KB
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
62
63
64
65
66
67
68
69
70
[build-system]
requires = [
"setuptools>=61.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "SimpleWallet"
version = "1.0.0"
authors = [
{ name = "ArcticTechnology", email = "arctic.technology.mail@gmail.com" },
]
description = "Simple wallet for Bitcoin."
keywords = [
"bitcoin",
"crypto",
"wallet",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Education",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.8"
dependencies = [
"libsecp256k1_0 >= 0.3.0",
]
[project.license]
text = "MIT"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/ArcticTechnology/SimpleWallet"
[project.scripts]
simplewallet = "simplewallet.main:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = [
"src",
]
namespaces = false
[tool.setuptools.data-files]
"simplewallet/config" = [
"config/config.json",
]