-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
43 lines (40 loc) · 1.3 KB
/
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
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "UliEngineering"
version = "0.4.20"
description = "Computational tools for electronics engineering"
authors = ["Uli Köhler <[email protected]>"]
license = "Apache-2.0"
homepage = "https://techoverflow.net/"
readme = "README.md"
keywords = ["electronics", "engineering", "computational tools"]
packages = [
{ include = "UliEngineering" },
{ include = "UliEngineering/*" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"License :: DFSG approved",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis"
]
[tool.poetry.dependencies]
python = ">=3.0"
numpy = ">=1.5"
toolz = ">=0.5"
[tool.poetry.dev-dependencies]
coverage = "*"
mock = "*"
parameterized = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"