-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 921 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 921 Bytes
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>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "pyrepec"
version = "0.2.2"
description = "Python client for RePEc API"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Giuseppe Acito" },
{ name = "Andrea Capitanelli" },
]
keywords = ["api", "client", "repec"]
dependencies = [
"pydantic>=2.6.4,<3",
"requests>=2.31,<3",
]
[dependency-groups]
dev = [
"bump-my-version>=1.2,<2",
"gitchangelog>=3,<4",
"pystache>=0.6.5,<1",
"pytest>=8.1,<9",
"pytest-cov>=5,<8",
"pytest-xdist>=3.5,<4",
"ruff>=0.15,<1",
]
[tool.ruff]
target-version = "py39"
line-length = 88
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.bumpversion]
current_version = "0.2.2"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "README.md"
search = "Version: {current_version}"
replace = "Version: {new_version}"