-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1.19 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "tfdatacompose"
version = "0.1.0"
authors = [
{ name = "François LaBerge", email = "fgrclaberge@gmail.com" },
]
description = "Create composable data transformation pipelines using Tensorflow Datasets"
readme = "README.md"
requires-python = ">=3.8,<3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
]
dependencies = [
"tensorflow>=2.12.0",
]
license = { text = "MIT" }
[project.urls]
"Homepage" = "https://github.com/FGRCL/tf-data-compose"
"Bug Tracker" = "https://github.com/FGRCL/tf-data-compose"
[tool.pdm]
[[tool.pdm.source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[dependency-groups]
dev = [
"black>=23.9.1",
"ruff>=0.9.7",
"pyright>=1.1.394",
"pytest>=7.4.2",
"numpy>=1.24.3",
"coverage>=7.3.1",
"types-tensorflow>=2.18.0.20241227",
"sphinx>=7.1.2",
"sphinx-rtd-theme>=1.3.0",
"jupyter>=1.1.1",
"nbsphinx>=0.9.6",
]
[tool.pdm.scripts]
test = "make test"
lint = "make lint"
docs = "make docs"