-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (40 loc) · 1.09 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "fast-flake-update"
authors = [
{ name = "Jörg Thalheim", email = "joerg@thalheim.io" },
]
description = "Update nix flake git/github inputs from local git repositories checkouts"
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python"
]
version = "0.0.1"
[project.scripts]
fast-flake-update = "fast_flake_update:main"
[tool.setuptools]
packages = ["fast_flake_update"]
[tool.ruff]
target-version = "py310"
line-length = 88
select = ["E", "F", "I"]
ignore = [ "E501" ]
[tool.mypy]
python_version = "3.10"
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
no_implicit_optional = true
[[tool.mypy.overrides]]
module = "setuptools.*"
ignore_missing_imports = true