-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.39 KB
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
44
[tool.poetry]
name = "UliEngineering"
version = "1.1.4"
description = "Computational tools for electronics engineering"
authors = ["Uli Köhler <ukoehler@techoverflow.net>"]
license = "Apache-2.0"
homepage = "https://techoverflow.net/"
readme = "README.md"
keywords = ["electronics", "engineering", "computational tools"]
packages = [
{ include = "UliEngineering" },
{ include = "UliEngineering/*" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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 :: Electronic Design Automation (EDA)",
"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"