-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (47 loc) · 1.56 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
[tool.poetry]
name = "paicorelib"
version = "1.3.1"
description = "Library of PAICORE 2.0"
authors = ["Ziru Pan <zrpan@stu.pku.edu.cn>"]
maintainers = [
"Hongtu Xia <hongtux@pku.edu.cn>",
"Siyuan Gao <siyuan-gao@outlook.com>",
"Zhaoyang Hao <hzyang2218@gmail.com>",
"Ziru Pan <zrpan@stu.pku.edu.cn>",
]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/PAICookers/PAIlib"
homepage = "https://github.com/PAICookers/PAIlib"
documentation = "https://github.com/PAICookers/PAIlib#readme"
keywords = ["PAICORE 2.0", "PAICORE library", "PAILib"]
classifiers = [
"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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
]
packages = [{ include = "paicorelib" }]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.26.0"
pydantic = "^2.0.3"
[tool.poetry.group.test.dependencies]
pytest = "^8.0.0"
pytest-md = "^0.2.0"
[tool.pytest.ini_options]
minversion = "8.0.0"
testpaths = ["tests"]
[[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"