-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
33 lines (30 loc) · 862 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>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spacetimeengine"
version = "0.1.11"
description = "A Python physics utility which can analyze any given metric solution to the Einstein field equations."
readme = "README.md"
authors = [
{ name = "Michael.C Ryan", email = "[email protected]" }
]
license = { text = "BSD License" }
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"sympy"
]
[project.optional-dependencies]
testing = [
"nose"
]
[tool.setuptools.packages.find]
where = ["."]