Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨: create init file #12

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 102 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
requires-python = ">=3.10"
license = "MIT"
authors = [
{name="Consortium for Python Data API Standards", email="[email protected]"},
{name="Joren Hammudoglu", email="[email protected]"},
{name="Nathaniel Starkman", email="[email protected]"}
{ name = "Consortium for Python Data API Standards", email = "[email protected]" },
{ name = "Joren Hammudoglu", email = "[email protected]" },
{ name = "Nathaniel Starkman", email = "[email protected]" },
]
classifiers = [
"Development Status :: 1 - Planning",
Expand All @@ -28,24 +28,112 @@
dependencies = []

[project.urls]
Changelog = "https://github.com/data-apis/array-api-typing/releases"
Repository = "https://github.com/data-apis/array-api-typing"
Repository = "https://github.com/data-apis/array-api-typing"
Changelog = "https://github.com/data-apis/array-api-typing/releases"


[build-system]
requires = ["hatch-vcs", "hatchling"]
requires = ["hatch-vcs", "hatchling"]
build-backend = "hatchling.build"


[dependency-groups]
test = [
"pytest>=8.3.3",
"pytest-cov >=3",
"pytest-github-actions-annotate-failures",
"sybil>=8.0.0",
]
dev = [
"pre-commit>=4.0.1",
{ include-group = "test" },
]
test = [
"pytest>=8.3.3",
"pytest-cov >=3",
"pytest-github-actions-annotate-failures",
"sybil>=8.0.0",
]


[tool.hatch]
build.hooks.vcs.version-file = "src/array_api_typing/_version.py"
version.source = "vcs"
version.source = "vcs"

[tool.hatch.build.hooks.vcs]
version-file = "src/array_api_typing/_version.py"
template = '''
# This file is automatically generated by Hatch
version = {version!r}
version_tuple = {version_tuple!r}
'''


[tool.coverage]
report.exclude_also = ['\.\.\.', 'if typing.TYPE_CHECKING:']
run.source = ["array-api-typing"]
run.branch = true


[tool.mypy]
files = ["src", "tests"]
python_version = "3.10"

strict = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
disable_bytearray_promotion = true # Note(2024-12-05): these are private flags
disable_memoryview_promotion = true # Note(2024-12-05): these are private flags
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]

warn_return_any = true
warn_unreachable = true
warn_unused_configs = true


[tool.pytest.ini_options]
addopts = [
"--showlocals",
"--strict-config",
"--strict-markers",
"-p no:doctest", # using sybil
"-ra",
]
filterwarnings = [
"error",
# Sybil
"ignore:Attribute s is deprecated and will be removed in Python 3\\.14:DeprecationWarning",
"ignore:ast\\.Str is deprecated and will be removed in Python 3\\.14:DeprecationWarning",
]
log_cli_level = "INFO"
minversion = "8.3"
testpaths = ["README.md", "src/", "docs", "tests/"]
norecursedirs = ["docs/_build"]
xfail_strict = true


[tool.ruff]
preview = true
force-exclude = true

[tool.ruff.lint]
extend-select = ["ALL"]
ignore = [
"COM812", # Conflicts with formatter
"CPY", # Missing copyright notice at top of file (NOTE revisit when autofixable)
"D105", # Missing docstring in magic method
"D107", # Missing docstring in __init__
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
"FBT", # flake8-boolean-trap
"FIX", # flake8-fixme
"ISC001", # Conflicts with formatter
]

[tool.ruff.lint.flake8-import-conventions]
banned-from = ["array_api_typing"]

[tool.ruff.lint.flake8-import-conventions.extend-aliases]
array_api_typing = "xpt"

[tool.ruff.lint.isort]
combine-as-imports = true
extra-standard-library = ["typing_extensions"]
known-local-folder = ["array_api_typing"]

[tool.ruff.format]
docstring-code-format = true
line-ending = "lf"
5 changes: 5 additions & 0 deletions src/array_api_typing/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Static typing support for the array API standard."""

__all__: list[str] = []
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alternative workaround for type-checkers that still don't realize that __all__ is always a sequence of str in 2024:

Suggested change
__all__: list[str] = []
__all__ = ()


from ._version import version as __version__ , version_tuple as __version_tuple__
3 changes: 3 additions & 0 deletions src/array_api_typing/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# This file is automatically generated by Hatch
version = '0.1.dev10+g7941e46.d20241205'
version_tuple = (0, 1, 'dev10', 'g7941e46.d20241205')
Loading