-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (49 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "blue-prints"
authors = [{ name = "Blueprints" }]
maintainers = [
{ name = "Enrique García Méndez", email = "enriquegarcia@live.nl" },
{ name = "Blueprints Maintainers" },
]
description = "Blueprints: Python AEC library."
requires-python = ">=3.12"
keywords = [
"Civil engineering",
"Material properties",
"Structural engineering",
"Structural analysis",
"Eurocodes",
"Dutch building codes",
]
license = { text = "LGPL-2.1" }
classifiers = [
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
]
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
version = { attr = "blueprints.__version__" }
readme = { file = "README.md", content-type = "text/markdown" }
dependencies = { file = "requirements.txt" }
[tool.setuptools.dynamic.optional-dependencies]
minimal_requirements = { file = "requirements.txt" }
dev = { file = "requirements_dev.txt" }
docs = { file = "docs/requirements_docs.txt" }
[project.urls]
homepage = "https://github.com/Blueprints-org/blueprints"
documentation = "https://blueprints.readthedocs.io"
issues = "https://github.com/Blueprints-org/blueprints/issues"
[tool.setuptools.packages.find]
include = ["blueprints*"]
[tool.mypy]
packages = "blueprints"
python_version = "3.12"
[[tool.mypy.overrides]]
module = ["matplotlib.*"]
ignore_missing_imports = true