-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
47 lines (42 loc) · 1.26 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
[project]
name = "bentley_ottmann"
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",
"prioq>=0.6.0,<1.0",
"reprit>=0.9.0,<1.0"
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"hypothesis>=6.70.2,<7.0",
"pytest>=7.2.2,<8.0"
]
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.coverage.run]
source = ["bentley_ottmann"]
[tool.pytest.ini_options]
addopts = "--verbose -s --hypothesis-profile=default"
[tool.setuptools.dynamic]
version = { attr = "bentley_ottmann.__version__" }