-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.02 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
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "perpl"
version = "1.0.0"
# dynamic = ["version"]
authors = [
{ name="Alistair Curd", email="[email protected]" }
]
description = "A package for point pattern analysis: Pattern Extraction from Relative Positions of Localisations"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy~=1.26",
"scipy~=1.12",
"numdifftools~=0.9",
"pandas~=2.2",
"matplotlib~=3.8",
"scikit-image~=0.22",
"jupyter~=1.0",
"jupytext~=1.16",
]
[project.scripts]
relpos = "perpl.relative_positions:main"
rotsym2d = "perpl.rot_2d_symm_fit:main"
[project.urls]
Homepage = "https://github.com/AlistairCurd/PERPL-Python3"
Issues = "https://github.com/AlistairCurd/PERPL-Python3/issues"
# [tool.tox], [tox] ?