-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
74 lines (63 loc) · 1.68 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
71
72
73
74
[build-system]
requires = ["maturin>=1.9.4,<2.0"]
build-backend = "maturin"
[project]
name = "pyasic_rs"
version = "0.5.0"
description = "Python bindings for asic-rs"
authors = [{ name = "Brett Rowan", email = "121075405+b-rowan@users.noreply.github.com" }]
repository = "https://github.com/256-Foundation/asic-rs"
homepage = "https://github.com/256-Foundation/asic-rs"
source = "https://github.com/256-Foundation/asic-rs"
documentation = "https://github.com/256-Foundation/asic-rs"
issues = "https://github.com/256-Foundation/asic-rs/issues"
license = "Apache 2.0"
readme = "python/README.md"
requires-python = ">=3.11, <4.0"
dependencies = [
"pydantic>=2"
]
keywords = [
"python",
"asic",
"bitcoin",
"whatsminer",
"antminer",
"braiins-os",
"vnish",
"luxos",
"bitaxe"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
test = [
"pytest>=8",
]
[tool.maturin]
package-name = "pyasic_rs"
module-name = "pyasic_rs.asic_rs"
features = ["python"]
python-source = "python"
[tool.mypy]
files = ["python/pyasic_rs"]
mypy_path = ["python"]
explicit_package_bases = true
plugins = ["pydantic.mypy"]
python_version = "3.11"
strict = true
[[tool.mypy.overrides]]
module = "pyasic_rs.asic_rs"
disable_error_code = ["no-redef"]
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true