-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (46 loc) · 1.38 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
[project]
name = "clipping"
description = "Geometries clipping."
authors = [{ name = "Azat Ibrakov", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
]
requires-python = ">=3.7"
dependencies = [
"dendroid>=1.6.1,<2.0",
"ground>=9.0.0,<10.0",
"orient>=7.0.0,<8.0",
"prioq>=0.6.0,<1.0",
"reprit>=0.9.0,<1.0"
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"bentley_ottmann>=8.0.0,<9.0",
"hypothesis>=6.75.2,<7.0",
"hypothesis-geometry>=8.0.0,<9.0",
"pytest>=7.3.1,<8.0"
]
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
source = ["clipping"]
[tool.pytest.ini_options]
addopts = "--verbose -s --hypothesis-profile=default"
[tool.setuptools.dynamic]
version = { attr = "clipping.__version__" }