-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (54 loc) · 1.43 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pru"
description = "Update and resolve requirements.txt based on the Python environment and pip used."
readme = "README.md"
requires-python = ">=3.7.1"
keywords = []
authors = [
{name = "Muhammad Yasirroni", email = "[email protected]"},
]
maintainers = [
{name = "Muhammad Yasirroni", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = []
dynamic = ["version"]
[project.scripts]
pru = "pru.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.2.0",
"pytest-cov>=4.1.0",
"pytest-xdist>=3.1.0",
"pre-commit>=2.21.0",
"ruff>=0.0.254",
"setuptools>=68.0.0",
"pytest-cov>=4.1.0",
"pytest-dependency>=0.5.1",
]
[project.urls]
Documentation = "https://github.com/yasirroni/pru#readme"
Issues = "https://github.com/yasirroni/pru/issues"
Source = "https://github.com/yasirroni/pru"
[tool.ruff]
fix = true
line-length = 88
lint.select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]