-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
50 lines (41 loc) · 1.13 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "rapids-dependency-file-generator"
dynamic = [
"version",
]
authors = [
{ name = "RAPIDS Development Team", email = "[email protected]" }
]
urls = { homepage = "https://github.com/rapidsai/dependency-file-generator" }
description = "Tool for generating RAPIDS environment files"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.9"
dependencies = [
"PyYAML",
"jsonschema",
"tomlkit",
]
[project.scripts]
rapids-dependency-file-generator = "rapids_dependency_file_generator._cli:main"
[tool.setuptools]
packages = { "find" = { where = ["src"] } }
[tool.setuptools.dynamic]
version = {attr = "rapids_dependency_file_generator._version.__version__"}
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "D"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"