forked from nvaytet/lunarlander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 832 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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "lunarlander"
version = "0.1.0"
description = "Land safely on the moon!"
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",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent"
]
requires-python = ">=3.8"
dependencies = [
"importlib-resources",
"matplotlib",
"numpy",
"pyglet >= 2.0",
"scipy"
]
[tool.setuptools.packages.find]
where = ["./src"]
[tool.setuptools.package-data]
supremacy = ["resources/*.png"]