-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 842 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 842 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
[tool.poetry]
name = "OptimalPy"
version = "0.0.0.0"
description = "Optimization capabilities."
authors = ["David Gayman <drg.developer.2@gmail.com>"]
homepage = "https://github.com/dg-developer/OptimalPy"
repository = "https://github.com/dg-developer/OptimalPy"
documentation = "https://github.com/dg-developer/OptimalPy"
readme = "ReadMe.md"
license = "Apache License 2.0"
packages = [
{ include = "optimal" }
]
keywords = ["optimal", "optimizatoin", "optimizing", "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"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"