-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (52 loc) · 1.34 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
[tool.poetry]
name = "spycio"
version = "0.2.8"
description = "Distances in python"
authors = ["Bruno Peixoto <[email protected]>"]
license = "MIT license"
readme = "README.md"
packages = [{include = "spycio"}]
homepage = "https://pypi.org/project/spycio/"
repository = "https://github.com/trouchet/spycio"
keywords = ["distance"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Information Analysis"
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
numpy = "^1.24.1"
docutils = "0.18.1"
sphinx-rtd-theme = "^1.2.0"
toml = "^0.10.2"
types-toml = "^0.10.8.5"
pytest-testmon = "^2.0.2"
[tool.poetry.group.dev.dependencies]
sphinx = "^6.0.0"
sphinxcontrib-websupport = "^1.2.4"
sphinxcontrib-serializinghtml = "^1.1.5"
ruff = "^0.0.217"
pre-commit = "^2.20.0"
black = "^22.12.0"
coverage = "^7.0"
tox = "^4.0.19"
flake8 = "^6.0.0"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-watch = "^4.2.0"
pylint = "^2.15.9"
wheel = "^0.38.4"
watchdog = "^2.2.0"
isort = "^5.11.4"
mypy = "^0.991"
types-mock = "^4.0.15.2"
pygments = "^2.14.0"
[tool.ruff]
line-length = 100
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"