-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
30 lines (27 loc) · 879 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
[tool.poetry]
name = "MathematicalPy"
version = "0.0.0.0"
description = "Mathematically-focused capabilities."
authors = ["David Gayman <[email protected]>"]
homepage = "https://github.com/dg-developer/MathematicalPy"
repository = "https://github.com/dg-developer/MathematicalPy"
documentation = "https://github.com/dg-developer/MathematicalPy"
readme = "ReadMe.md"
license = "Apache License 2.0"
packages = [
{ include = "mathematical" }
]
keywords = ["math", "mathematical", "simple", "geometry", "algebra", "calculus", "vector"]
classifiers = [
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries"
]
[tool.poetry.scripts]
main = "main:main"
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.25.2"
marvelouspy = "^0.0.0.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"