-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (74 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
84 lines (74 loc) · 1.94 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
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = [
"setuptools>=42",
"wheel",
"scikit-build-core>=0.5",
"pybind11>=2.10.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "axono"
version = "0.2.0"
description = "Deep learning framework with tensor operations and neural network modules"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{ name = "ByteRainTech", email = "offical@byterain.co" },
{ name = "aztice", email = "offical@byterain.co" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/ByteRainTech/Axono"
Repository = "https://github.com/ByteRainTech/Axono"
Documentation = "https://axono.readthedocs.io"
[tool.setuptools]
package-dir = { "" = "python" }
packages = [
"axono",
"axono.core",
"axono.nn",
"axono.core.operators",
"axono.core.ops"
]
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
"*" = ["*.dll", "*.so", "*.pyd"]
[tool.setuptools.data-files]
"axono/library" = [
"python/axono/library/*.dll",
"python/axono/library/*.so",
"python/axono/library/*.pyd",
]
[[tool.setuptools.ext-modules]]
name = "axono.core.axonolib"
sources = ["python/axono/_pseudo.c"]
[tool.setuptools.dynamic]
dependencies = { file = "requirements.txt" }
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"N", # pep8-naming
]
ignore = [
"E501", # line too long, handled by formatter
]
[tool.ruff.lint.isort]
known-first-party = ["axono"]