generated from edeno/package_template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
38 lines (31 loc) · 1.11 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "track_linearization"
description = "A python package to map 2D trajectories to 1D."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [{ name = "Eric Denovellis", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["numpy", "scipy", "matplotlib", "pandas", "dask", "networkx"]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/LorenFrankLab/track_linearization"
"Bug Tracker" = "https://github.com/LorenFrankLab/track_linearization/issues"
[project.optional-dependencies]
test = ["black", "pytest", "pytest-cov", "jupyter", "nbconvert"]
opt = ["numba", "ipympl"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/track_linearization/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"]
[tool.hatch.build.targets.wheel]
packages = ["src/track_linearization"]