60 lines
1.4 KiB
TOML
60 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "fvr"
|
|
dynamic = ["version"]
|
|
description = "Various tools"
|
|
license = "MIT"
|
|
license-files = ["LICEN[CS]E.*"]
|
|
authors = [
|
|
{ name = "Daniel Weschke", email = "daniel.weschke@directbox.de" },
|
|
]
|
|
keywords = [
|
|
"mechanics", "materials",
|
|
]
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Education",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"Intended Audience :: Science/Research",
|
|
"Natural Language :: English",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Topic :: Office/Business",
|
|
"Topic :: Scientific/Engineering",
|
|
"Typing :: Typed",
|
|
]
|
|
dependencies = [
|
|
"numpy",
|
|
]
|
|
[project.optional-dependencies]
|
|
docs = ["sphinx", "furo"]
|
|
test = ["pytest"]
|
|
dev = [
|
|
# recursive optional dependencies
|
|
"fvr[docs,test]",
|
|
# Useful for building quick scripts, https://github.com/google/python-fire
|
|
"fire",
|
|
# Code quality tools
|
|
"mypy",
|
|
# # Improved exception traceback output
|
|
# # https://github.com/qix-/better-exceptions
|
|
# "better_exceptions",
|
|
# # Analyzing dependencies
|
|
# # install graphviz to generate graphs
|
|
# "graphviz",
|
|
# "pipdeptree",
|
|
]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "fvr.__version__"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
include = ["fvr*"]
|
|
# namespaces = false
|