-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.63 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
[tool.poetry]
name = "adsimulo"
version = "0.2.0"
description = "Civilisation simulator on a procedural universe"
license = "GPL-3.0-or-later"
authors = ["kafkaphoenix <[email protected]>"]
readme = "README.md"
repository="https://github.com/kafkaphoenix/adsimulo/"
documentation="https://github.com/kafkaphoenix/adsimulo/tree/main/docs/"
keywords=["civilisation", "simulation", "simulator", "procedural"]
classifiers=[
"Development Status :: 1 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/kafkaphoenix/adsimulo/issues"
[tool.poetry.dependencies]
python = "^3.10"
pyfastnoisesimd = "^0.4.2"
numpy = "^1.22.4"
termcolor-whl = "^1.1.2"
perlin-noise = "^1.12"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
black = "^22.3.0"
isort = "^5.10.1"
ipdb = "^0.13.9"
pre-commit = "^2.19.0"
single-source = "^0.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
adsimulo="adsimulo.scripts.run:main"
[tool.black]
target-version = ["py310"]
line-length = 120
preview = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[tool.pytest.ini_options]
addopts = "-s -p no:logging"
testpaths = [
"tests",
]