-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 836 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (27 loc) · 836 Bytes
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>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "gravity-simulation"
version = "1.1.0"
authors = [{name = "Callum Scott", email = "callummscott@yahoo.co.uk"}]
description = "3D gravity simulation in Python"
readme = "README.md"
requires-python = ">= 3.12"
dependencies = [
"matplotlib>=3.10",
"numpy>=2.4",
"PyYAML>=6.0"
]
classifiers = [
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics"
]
license = "MIT"
license-files = ["LICENSE"]
keywords = ["gravity", "physics", "simulation", "python", "3D", "matplotlib", "n-body"]
[project.urls]
Homepage = "https://github.com/callummscott/gravity_simulation/"
Issues = "https://github.com/callummscott/gravity_simulation/issues"
[dependency-groups]
test = ["pytest>=9.0"]