-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·36 lines (31 loc) · 888 Bytes
/
pyproject.toml
File metadata and controls
executable file
·36 lines (31 loc) · 888 Bytes
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
# NEW VERSION TUTORIAL FOR MYSELF
# STEP 1 - COMMIT NEW CHANGES AND PUSH THEM
# STEP 2 - BUMP VERSION AND COMMIT IT (DONT PUSH!!!!)
# STEP 3 - CREATE TAG WITH THAT VERSION
# STEP 4 - PUSH (SYNC) CHANGES
# STEP 5 - PUSH TAG
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "visualbench"
version = "1.0.6"
requires-python = ">=3.11"
dependencies = [
"torch",
"numpy",
"scipy",
"more_itertools",
"matplotlib",
"opencv-python",
]
# [tool.setuptools]
# packages = ["visualbench"]
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default
#1
[tool.setuptools.package-data]
# The key is the package name.
# The value is a list of file patterns to include.
# "data/**/*" means include all files in the 'data' subdirectory, recursively.
visualbench = ["data/**/*"]