-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.76 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
[project]
name = "python-mscl"
version = "67.0.0"
description = "Easy to install python wrapper for the MSCL library."
readme = "README.md"
authors = [
{ name = "Harshil", email = "[email protected]" }
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
]
dependencies = []
[dependency-groups]
dev = ["ruff", "hatchling"]
[tool.hatch.build.targets.wheel]
packages = ["src/python_mscl"]
[tool.hatch.build.hooks.custom]
path = "hatch_build.py"
[tool.hatch.build.targets.sdist]
exclude = ["mscl_release_assets/", "uv.lock", "main.py", "src/python_mscl/_mscl.so",
"src/python_mscl/mscl.py"]
[build-system]
requires = ["hatchling", "requests", "pygithub"]
build-backend = "hatchling.build"
# [[tool.uv.index]]
# name = "testpypi"
# url = "https://test.pypi.org/simple/"
# publish-url = "https://test.pypi.org/legacy/"
# RUFF:
[tool.ruff]
line-length = 100
target-version = "py39"
show-fixes = true
exclude = ["mscl_release_assets/"]
[tool.ruff.lint]
ignore = ["ISC001", "S603", "S605", "S607", "PLR0912"]
select = ["E", "F", "I", "PL", "UP", "RUF", "PTH", "C4", "B", "PIE", "SIM", "RET", "RSE",
"G", "ISC", "PT", "ASYNC", "TCH", "SLOT", "PERF", "PYI", "FLY", "AIR", "Q", "INP",
"W", "YTT", "DTZ", "ARG", "T20", "FURB", "D100", "D101", "D300", "D418",
"D419", "S", "NPY"]