-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
53 lines (47 loc) · 1.39 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "battlesim"
description = "Modelling and animating simulated battles between units in Python."
dynamic = ["version"]
requires-python = ">=3.8"
authors = [
{name = "Greg Parkes"}
]
readme = {file = "README.rst", content-type = "text/x-rst"}
license = { file = "LICENSE.txt" }
dependencies = [
"numpy>=1.11.0",
"pandas>=0.25.1",
"matplotlib>=3.1.1",
"numba>=0.45"
]
keywords = ["simulation", "battle", "tabs"]
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Framework :: IPython",
"Framework :: Jupyter",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
all = ["tqdm", "pytest"]
[project.urls]
Homepage = "https://github.com/gregparkes/BattleSimulator"
Changelog = "https://github.com/gregparkes/BattleSimulator/blob/master/CHANGELOG.md"
#[tool.pytest.ini_options]
#addopts = "--cov --cov-report html cov-report term-missing"
[tool.pylint]
max-line-length = 120
disable = [
"C0103", # invalid name
"C0209", # consider f-string
]
[tool.black]
exclude = "battlesim/__*.py"