-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (61 loc) · 1.47 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sentient"
dynamic = ["version", "readme"]
requires-python = ">=3.10"
keywords = ["AI"]
authors = [
{name = "Miguel Xochicale", email = "[email protected]"},
{name = "Sujon Hekim", email = "[email protected]"},
]
maintainers = [
{name = "Add maintener", email = "[email protected]"}
]
description = "Package example!"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dependencies = [
"numpy",
"opencv-python",
"notebook",
"jupytext",
"matplotlib",
"pandas",
"seaborn",
"scikit-image",
"typing",
"thread6",
#"pydot",
# ...
]
[project.optional-dependencies]
# development dependency groups
test = [
"pytest",
"pylint",
"black",
"isort",
"codespell",
"pre-commit"
#'pytest-cov',
# ...
]
learning = [
#"pytorch",
#"cudatoolkit",
#"scikit-learn",
#"tensorflow",
# ...
]
[tool.setuptools.dynamic]
version = {attr = "sentient.__version__"}
readme = {file = ["README.md"]}
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["sentient"] # package names should match these glob patterns (["*"] by default)
#exclude = ["my_package.tests*"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)