-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (39 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
[project]
name = "ballfish"
dynamic = ["version"]
authors = [
{ name="Arseniy Terekhin", email="senyai@gmail.com" },
]
description = "Image augmentation library"
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = [
"torchvision", # grayscale, sharpness
"torch",
"scipy", # truncnorm
]
[project.urls]
"Homepage" = "https://github.com/iitpvisionlab/ballfish"
"Documentation" = "https://ballfish.readthedocs.io/"
"Bug Reports" = "https://github.com/iitpvisionlab/ballfish/issues"
"Source" = "https://github.com/iitpvisionlab/ballfish"
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
target-version = ["py310"]
[tool.setuptools.package-data]
"ballfish" = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "ballfish.__version__"}