-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.41 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
[project]
name = "hashcons"
version = "0.1.0"
authors = [{ name = "Hashberg" }]
description = "Hash consing for flyweight instance management."
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.9"
dependencies = ["typing-extensions>=4.12.2"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Natural Language :: English",
"Typing :: Typed",
]
[project.urls]
Documentation = "https://hashcons.readthedocs.io"
Repository = "https://github.com/hashberg-io/hashcons"
Issues = "https://github.com/hashberg-io/hashcons/issues"
[build-system] # see https://pypi.org/classifiers/
requires = [
"setuptools>=63.4.3", # see https://github.com/python/mypy/issues/13392#issuecomment-1212727421
"wheel",
"setuptools_scm>=6.2",
]
build-backend = "setuptools.build_meta"
# see https://github.com/pypa/setuptools_scm
[tool.setuptools_scm]
version_scheme = "post-release" # use post-release scheme (default is pre-release of next version)
local_scheme = "no-local-version" # interferes with PyPI
[tool.black]
line-length = 80
target-version = ["py39", "py310", "py311", "py312"]
[tool.mypy]
python_version = "3.12"
strict = true