-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.21 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
60
61
62
63
64
[build-system]
requires = ["setuptools>=45", "setuptools_scm>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pymapmanager"
dynamic = ["version"]
dependencies = [
"mapmanagercore",
"numpy",
"pandas",
# "scipy",
# "scikit-image",
# "tifffile",
# "geopandas",
"shapely",
"platformdirs",
'matplotlib',
'seaborn',
'qtpy',
'PyQt5', # This will not work on macOS arm
'pyqtgraph',
'pyqtdarktheme',
# 'plotly'
]
requires-python = ">=3.11"
[project.scripts]
pymapmanager = "pymapmanager.interface2.pyMapManagerApp2:run"
[tool.setuptools_scm]
version_file = "src/pymapmanager/_version.py"
[project.optional-dependencies]
test = [
'pytest',
'pytest-cov',
'pytest-qt',
'flake8',
]
docs = [
'mkdocs',
'mkdocs-material',
'mkdocs-jupyter',
'mkdocstrings',
'mkdocstrings-python', # resolve error as of April 30, 2023
]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.ruff]
ignore = [
"E501", # Supress line-too-long warnings: trust black's judgement on this one.
]
[tool.black]
line_length = 79
[tool.isort]
profile = "black"
line_length = 79