-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 982 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel"] # [CHANGE] upgraded setuptools to 61+ for full pyproject.toml metadata support
build-backend = "setuptools.build_meta"
[project]
name = "DynamicalComponentsAnalysis"
version = "1.1.0"
description = "Dynamical Components Analysis"
readme = "README.md"
requires-python = ">=3.6"
authors = [
{ name = "Jesse Livezey", email = "jesse.livezey@gmail.com" },
{ name = "David Clark", email = "dgc2138@cumc.columbia.edu" }
]
license = { file = "LICENSE.txt" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/BouchardLab/DynamicalComponentsAnalysis"
"Bug Tracker" = "https://github.com/BouchardLab/DynamicalComponentsAnalysis/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}