-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
97 lines (85 loc) · 1.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "visions"
dynamic = ["version"]
description = "Visions"
readme = "README.md"
license = { text = "BSD License" }
authors = [
{ name = "Dylan Profiler", email = "[email protected]" }
]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy>=1.23.2",
"pandas>=2.0.0",
"attrs>=19.3.0",
"networkx>=2.4",
"multimethod>=1.4",
"puremagic",
]
[project.optional-dependencies]
type_geometry = [
"shapely"
]
type_image_path = [
"imagehash",
"Pillow",
"puremagic"
]
plotting = [
"pydot",
"pygraphviz",
"matplotlib"
]
testing = [
"visions[type_geometry, type_image_path]",
"setuptools>=46.1.3",
"wheel>=0.34.2",
"black>=20.8b1",
"isort>=5.0.9",
"mypy>=0.770",
"recommonmark>=0.6.0",
"nbsphinx",
"sphinx_rtd_theme>=0.4.3",
"sphinx-autodoc-typehints>=1.10.3",
"IPython",
"Sphinx-copybutton",
"big_o>=0.10.1",
"twine>=3.1.1",
"pydot",
"pytest>=5.2.0",
"check-manifest>=0.41",
"pre-commit",
"pytest-spark>=0.6.0",
"pyarrow>=1.0.1",
"numba",
"pyspark",
]
dev = [
"visions[testing, plotting]"
]
all = [
"visions[type_geometry, type_image_path, plotting]"
]
[project.urls]
Repository = "https://github.com/dylan-profiler/visions"
Documentation = "https://dylan-profiler.github.io/visions"
[tool.setuptools]
packages = ["visions"]
package-data = { vision = ["py.typed"] }
include-package-data = true
zip-safe = false
[tool.setuptools.package-dir]
visions = "src/visions"
[tool.setuptools.dynamic]
version = { attr = "visions.__version__" }