forked from 256foundation/asic-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.28 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
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "pyasic_rs"
version = "0.3.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"
]
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",
]
[tool.maturin]
package-name = "pyasic_rs"
module-name = "pyasic_rs.asic_rs"
features = ["python"]
python-source = "python"