-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
26 lines (23 loc) · 978 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "PyDiffGame"
version = "1.0.0"
authors = [
{ name="Joshua Shay Kricheli", email="skricheli2@gmail.com" }
]
description = "PyDiffGame is a Python implementation of a Nash Equilibrium solution to Differential Games, based on a reduction of Game Hamilton-Bellman-Jacobi (GHJB) equations to Game Algebraic and Differential Riccati equations, associated with Multi-Objective Dynamical Control Systems"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://krichelj.github.io/PyDiffGame/"
"Bug Tracker" = "https://github.com/krichelj/PyDiffGame/issues"
# Specify where your source code is located
[tool.hatch.build.targets.wheel]
packages = ["src/PyDiffGame"] # Replace with the actual path to your package