-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (35 loc) · 1.39 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>=41", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[project]
name = "cellarium-cas"
authors = [
{ name="Cellarium CAS", email="[email protected]" }
]
description = "Cellarium Cell Annotation Service client tool"
requires-python = ">=3.7"
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
]
dynamic = ["dependencies", "optional-dependencies", "version", "readme"]
[tool.setuptools.packages.find]
include = ["cellarium.*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements/base.txt"]}
optional-dependencies = {docs = { file = ["requirements/docs.txt"] }, test = { file = ["requirements/test.txt"]}, vis = { file = ["requirements/vis.txt"]}}
readme = {file = ["README.md"], content-type = "text/markdown"}
[project.urls]
"Homepage" = "https://cellarium.ai"
"Source Code" = "https://github.com/cellarium-ai/cellarium-cas"
"Bug Tracker" = "https://github.com/cellarium-ai/cellarium-cas/issues"
"Discussion Forum" = "https://github.com/cellarium-ai/cellarium-cas/discussions"
[tool.setuptools-git-versioning]
enabled = true
[tool.black]
line-length = 120