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 57 58 59 60 61
|
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "codetiming"
authors = [
{ name = "Geir Arne Hjelle", email = "geirarne@gmail.com" },
{ name = "Real Python", email = "info@realpython.com" },
]
readme = "README.md"
dynamic = ["version", "description"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Education",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Monitoring",
"Typing :: Typed",
]
keywords = ["timer", "class", "contextmanager", "decorator"]
requires-python = ">=3.6"
dependencies = ["dataclasses; python_version < '3.7'"]
[project.urls]
Homepage = "https://realpython.com/python-timer"
"Source Code" = "https://github.com/realpython/codetiming"
Tutorial = "https://realpython.com/python-timer"
[project.optional-dependencies]
dev = ["black", "bump2version", "flake8", "flit", "interrogate", "isort", "mypy"]
test = ["black", "interrogate", "pytest", "pytest-cov", "tox"]
[tool.interrogate]
ignore-init-method = false
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-module = false
fail-under = 100
verbose = 0
[tool.isort]
profile = "black"
import_heading_stdlib = "Standard library imports"
import_heading_thirdparty = "Third party imports"
import_heading_firstparty = "Codetiming imports"
|