-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
47 lines (39 loc) · 1.24 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
[tool.poetry]
name = "cchess"
version = "1.24.5"
description = "ChineseChess (AKA XiangQi) library"
authors = ["walker8088 <[email protected]>"]
license = "LGPL3"
readme = "README.md"
keywords = ["XiangQi", "Xiang Qi", 'ChineseChess']
[project]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: LGPL-3.0-or-later",
"Natural Language :: Chinese",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
]
requires-python = ">=3.6"
dependencies = []
#dynamic = ["version"]
#[project.readme]
#file = "README.md"
#content-type = "text/x-rst"
[project.urls]
Homepage = "https://github.com/walker8088/cchess"
Source = "https://github.com/walker8088/cchess"
#Documentation = "https://twine.readthedocs.io/en/latest/"
[tool.poetry.dependencies]
python = "^3.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"