32 lines
569 B
TOML
32 lines
569 B
TOML
[project]
|
|
name = "spam"
|
|
version = "2020.0.0"
|
|
description = "Lovely Spam! Wonderful Spam!"
|
|
readme = "README.rst"
|
|
requires-python = ">=3.7"
|
|
license = {file = "LICENSE.txt"}
|
|
keywords = ["SCADA", "mipt"]
|
|
authors = [
|
|
{email = "tambovtsev.io@phystech.edu"},
|
|
{name = "Ilia Tambovtsev"}
|
|
]
|
|
|
|
classifiers = [
|
|
"Programming Language :: Python"
|
|
]
|
|
|
|
dependencies = [
|
|
"numpy",
|
|
"scipy"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest < 5.0.0",
|
|
]
|
|
|
|
[project.urls]
|
|
homepage = "https://example.com"
|
|
documentation = "https://readthedocs.org"
|
|
repository = "https://github.com"
|