-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (41 loc) · 951 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["jassor", "jassor.utils", "jassor.components", "jassor.components.*", "jassor.shape.*"]
exclude = [".gitignore"]
[project]
name = "jassor"
version = "0.5.0"
urls = { project_source = "https://github.com/name-used/jassor" }
authors = [
{ name = 'jassor', email = '[email protected]' }
]
description = "utils of jassor"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "GNU LESSER GENERAL PUBLIC LICENSE v3.0" }
keywords = [
'jassor',
'utils',
'shape',
'image',
]
classifiers = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
]
dependencies = [
'numpy',
'opencv-python',
'shapely',
'matplotlib',
'Pillow',
]
[options.extras_require]
dev = [
'onnxruntime',
'scipy',
'skimage',
]