forked from europybots2024/vendeeglobe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 901 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vendeeglobe"
version = "0.1.0"
description = "Solo sailing race around the world"
license = {text = "BSD-3-Clause"}
authors = [{name = "Neil Vaytet"}]
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Games/Entertainment :: Turn Based Strategy",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
requires-python = ">=3.9"
dependencies = [
"importlib-resources",
"matplotlib",
"numba",
"numpy",
"pillow",
"pyopengl",
"pyqt5",
"pyqtgraph",
"scipy",
]
[tool.setuptools.packages.find]
where = ["./src"]
[tool.setuptools.package-data]
vendeeglobe = [
"resources/*",
]
[tool.black]
skip-string-normalization = true