-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1.4 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
[tool.poetry]
name = "ounce"
version = "1.1.1"
description = "Fast, simple, non-fancy, and non-magical package for manipulating units of measure"
authors = ["Paul Melnikow <github@paulmelnikow.com>", "Metabolize, Body Labs, and other contributors"]
license = "BSD-2-Clause"
include = ["CHANGELOG.md"]
exclude = ["**/test_*.py"]
homepage = "https://ounce.readthedocs.io/en/stable/"
repository = "https://github.com/lace/ounce"
documentation = "https://ounce.readthedocs.io/en/stable/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Manufacturing",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
[tool.poetry.dev-dependencies]
executor = "23.2"
click = "8.1.3"
pytest = "7.2.0"
pytest-cov = "4.0.0"
flake8 = "5.0.4"
black = "22.10.0"
coverage = "6.5.0"
flake8-import-order = "0.18.2"
Sphinx = "4.3.2"
sphinxcontrib-apidoc = "0.3.0"
myst-parser = "0.18.1"
[build-system]
# Lint requires setuptools.
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
fail_under = 100.0
omit = ["**/test_*.py"]