-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
53 lines (44 loc) · 1.05 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
[tool.poetry]
name = "pydevtips"
version = "0.0.4"
description = "Functions and scripts to demonstrate Python development tips."
authors = ["Eric Bezzam <[email protected]>"]
license = "MIT"
# -- manually added --
readme = "README.rst"
package-mode = true # https://python-poetry.org/docs/basic-usage/#operating-modes
# --------------------
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^2.1.2"
scipy = "^1.14.1"
matplotlib = "^3.9.2"
hydra-core = "^1.3.2"
tqdm = "^4.66.5"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
isort = "^5.13.2"
flake8 = "^7.1.1"
pytest = "^8.3.3"
pre-commit = "^4.0.1"
twine = "^5.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
#### -- manually added (below)
[project.urls]
Homepage = "https://github.com/ebezzam/python-dev-tips"
Issues = "https://github.com/ebezzam/python-dev-tips/issues"
Documentation = "https://pydevtips.readthedocs.io"
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.git
| build
| dist
)/
'''