-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
74 lines (62 loc) · 2.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[tool.poetry]
name = "paibox"
version = "1.2.0"
description = "Toolchain of PAICORE 2.0"
authors = ["Ziru Pan <[email protected]>"]
maintainers = [
"Hongtu Xia <[email protected]>",
"Siyuan Gao <[email protected]>",
"Zhaoyang Hao <[email protected]>",
"Ziru Pan <[email protected]>",
]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/PAICookers/PAIBox"
homepage = "https://github.com/PAICookers/PAIBox"
documentation = "https://github.com/PAICookers/PAIBox#readme"
keywords = ["PAICORE 2.0", "PAIBox", "SNN", "Toolchain"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Compilers",
]
packages = [{ include = "paibox" }]
# Includes the document
include = ["docs/Guide-of-PAIBox.md", "CHANGELOG.md"]
[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.0.3"
numpy = "^1.26.0"
paicorelib = ">=1.3.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
pytest-md = "^0.2.0"
pytest-cov = "^6.0.0"
paicorelib = {git = "https://github.com/PAICookers/PAIlib.git", rev = "dev"}
orjson = "^3.10.0"
[tool.poetry.group.dev.dependencies]
orjson = "^3.10.0"
[tool.pytest.ini_options]
minversion = "8.0.0"
testpaths = ["tests"]
addopts = "--cov=paibox --cov-report=term"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"