-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.42 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
[project]
name = "gon"
description = "Processing of planar geometries."
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 = [
"bentley-ottmann>=8.0.0,<9.0",
"clipping>=6.0.0,<7.0",
"ground>=9.0.0,<10.0",
"locus>=10.0.0,<11.0",
"orient>=7.0.0,<8.0",
"reprit>=0.9.0,<1.0",
"sect>=7.0.0,<8.0",
"symba>=2.2.1,<3.0"
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"hypothesis>=6.75.3,<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 = ["gon"]
[tool.pytest.ini_options]
addopts = "--verbose -s --hypothesis-profile=default"
[tool.setuptools.dynamic]
version = { attr = "gon.__version__" }