-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 870 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (28 loc) · 870 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
29
30
31
32
33
34
35
[tool.poetry]
name = "compmec-section"
version = "0.4.0"
description = "Analysis of beams cross-section using the boundary element method"
authors = ["Carlos Adir <carlos.adir.leite@gmail.com>"]
readme = "README.md"
packages = [{ include = "compmec/section", from = "src" }]
include = ["schema/*.json"]
[tool.setuptools.packages.find]
include = ["src/compmec/section/schema/*.json"]
[tool.poetry.dependencies]
numpy = "^1.0.0"
compmec-nurbs = "^1.0.0"
compmec-shape = "^1.0.0"
python = "^3.7"
jsonschema = "^4.17.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.3"
scriv = {extras = ["toml"], version = "^1.3.1"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.scriv]
version = "literal: src/compmec/section/__init__.py: __version__"
[tool.black]
line-length = 79