-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (33 loc) · 1.22 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "iblbrainviewer"
description = "IBL API for atlas website"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "IBL staff", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "version"]
[project.urls]
"Homepage" = "https://github.com/int-brain-lab/iblbrainviewer"
"Website" = "https://atlas.internationalbrainlab.org"
"Documentation" = "https://github.com/int-brain-lab/iblbrainviewer/tree/main/docs"
"ChangeLog" = "https://github.com/int-brain-lab/iblbrainviewer/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/int-brain-lab/iblbrainviewer/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "iblbrainviewer.__version__"}
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
iblbrainviewer = ["*.pqt"]
[tool.setuptools.packages.find]
exclude = ["iblbrainviewer.tests*", "docs*"] # exclude packages matching these glob patterns