-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (49 loc) · 953 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.pdm]
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.2.1",
"coverage>=7.1.0",
]
docs = [
"sphinx>=6.1.3",
"sphinx-autoapi>=2.0.1",
]
formatting = [
"black>=22.12.0",
"isort>=5.12.0",
]
lsp = [
"rope>=1.7.0",
"flake8>=5.0.4",
"pycodestyle>=2.9.1",
"pydocstyle>=6.3.0",
"pylint>=2.15.10",
"mypy>=0.991",
"python-language-server>=0.36.2",
"pyls-mypy>=0.1.8",
]
debug = [
"debugpy>=1.6.6",
]
[project]
name = "pytadarida"
version = "0.1.0"
description = "Python wrapper to Tadarida-D software"
authors = [
{name = "Santiago Martinez", email = "santiago.mbal@gmail.com"},
]
dependencies = [
"pandas>=1.5.3",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 80
[tool.pyright]
include = ["pytadarida", "tests"]
[tool.rope]
source_folders = ["pytadarida"]