-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.2 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
[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.20"
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"
jinja2 = "^3.1.4"
markdown = "^3.7"
pillow = "^11.0.0"
[tool.poetry.dev-dependencies]
black = "^24.3.0"
isort = "^5.12.0"
pytest = "^7.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"