-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (34 loc) · 919 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pcontract"
version = "1.0.0"
description = "A data structure to track data over time."
readme = "README.md"
authors = [{ name = "suayip uzulmez", email = "suayip.541@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["contract", "data-tracking", "contract-management"]
requires-python = ">=3.10"
[project.urls]
"Homepage" = "https://github.com/realsuayip/pcontract"
"Bug Tracker" = "https://github.com/realsuayip/pcontract/issues"
[tool.ruff]
target-version = "py310"
line-length = 88
[tool.ruff.isort]
combine-as-imports = true
section-order = [
"future",
"standard-library",
"third-party",
"first-party",
"local-folder",
]
[tool.mypy]
strict = true