-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (41 loc) · 1.14 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.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = 6.0
# The typeguard plugin is broken
addopts = "-p no:typeguard"
pythonpath = ["."]
[tool.poetry]
name = "freeciv"
version = "0.0.19"
description = "Python tools to work with Freeciv and Freeciv21 files"
readme = "README.md"
authors = [
"Louis Moureaux <m_louis30@yahoo.com>",
"James Robertson <jwrober@gmail.com>",
]
license = "GPL-3.0-or-later"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Environment :: Console",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Games/Entertainment :: Turn Based Strategy",
]
[tool.poetry.urls]
homepage = "https://github.com/longturn/pyciv"
repository = "https://github.com/longturn/pyciv.git"
[tool.poetry.dependencies]
python = "^3.10"
ply = "^3.11"
typeguard = ">=2.13"
Unidecode = "1.3"
[tool.poetry.dev-dependencies]
black = "^23.3.0"
isort = "^5.12.0"
pytest = "^7.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"