-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 996 Bytes
/
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
[project]
name = "gulliver"
description = "An image analysis package for whole slide liver immunostainings."
authors = [
{name = "A. Corbat", email = "acorbat@ki.se"}
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
keywords = ["Liver", "Alagille Syndrome", "Whole Slide", "Immunofluorescence"]
maintainers = [
{name = "A. Corbat", email = "agustin.corbat@gmail.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Scientific Community"
]
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.scripts]
gulliver = "gulliver.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["gulliver"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
optional-dependencies.test = {file = "requirements.test.txt"}
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "gulliver/_version.py"