| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
- [project]
- name = "damper"
- authors = [
- {name = "Arkadiusz Michał Ryś", email = "Arkadiusz.Michal.Rys@gmail.com"},
- ]
- readme = "README.md"
- requires-python = ">=3.10"
- classifiers = [
- "Programming Language :: Python :: 3",
- "Development Status :: 2 - Pre-Alpha",
- "Intended Audience :: Developers",
- "Natural Language :: English",
- ]
- dynamic = ["version", "description"]
- license = {file = "LICENSE"}
- keywords = ["causal", "block", "diagrams", "damper", "spring"]
- dependencies = [
- ]
- [project.optional-dependencies]
- test = [
- "pytest~=7.3.1",
- ]
- doc = [
- "sphinx~=7.0.1",
- ]
- dev = [
- "tox~=4.5.1",
- "pip~=23.1.2",
- "flit~=3.9.0",
- "twine~=4.0.2",
- "invoke~=2.1.2",
- "jinja2~=3.1.2",
- "flake8~=6.0.0",
- "coverage~=7.2.6",
- ]
- graphical = [
- ]
- [project.urls]
- source = "https://git.rys.one/dtdesign/spring-mass-damper"
|